@if(isset($brand))
{!! Form::open(['url' => action([\App\Http\Controllers\BrandController::class, 'update'], [$brand->id]), 'method' => 'PUT', 'id' => 'modal_add_form' ]) !!}
@else
{!! Form::open(['url' => action([\App\Http\Controllers\BrandController::class, 'store']), 'method' => 'post', 'id' => $quick_add ? 'quick_add_brand_form' : 'modal_add_form' ]) !!}
@endif
{!! Form::label('name', __( 'brand.brand_name' ) . ':*') !!}
{!! Form::text('name', $brand->name ?? '', ['class' => 'form-control', 'required', 'placeholder' => __( 'brand.brand_name' ) ]); !!}
{!! Form::label('description', __( 'brand.short_description' ) . ':') !!}
{!! Form::text('description', $brand->description ?? '', ['class' => 'form-control','placeholder' => __( 'brand.short_description' )]); !!}
@if($is_repair_installed)
@endif
{!! Form::close() !!}