{!! Form::open(['url' => action('BrandController@update', [$brand->id]), 'method' => 'PUT', 'id' => 'brand_edit_form' ]) !!}
{!! 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)
@show_tooltip(__('repair::lang.use_for_repair_help_text'))
@endif