{!! Form::open(['url' => action([\App\Http\Controllers\BrandController::class, 'store']), 'method' => 'post', 'id' => $quick_add ? 'quick_add_brand_form' : 'brand_add_form' ]) !!}

@lang( 'brand.add_brand' )

{!! Form::label('name', __( 'brand.brand_name' ) . ':*') !!} {!! Form::text('name', null, ['class' => 'form-control', 'required', 'placeholder' => __( 'brand.brand_name' ) ]); !!}
{!! Form::label('description', __( 'brand.short_description' ) . ':') !!} {!! Form::text('description', null, ['class' => 'form-control','placeholder' => __( 'brand.short_description' )]); !!}
@if($is_repair_installed)
@show_tooltip(__('repair::lang.use_for_repair_help_text'))
@endif
{!! Form::close() !!}