{!! Form::open(['url' => action([\App\Http\Controllers\BrandController::class, 'update'], [$brand->id]), 'method' => 'PUT', 'id' => 'brand_edit_form', 'files' => true ]) !!}

@lang( 'brand.edit_brand' )

{!! 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' )]); !!}

{!! Form::label('image', __('brand.image') . ':' . 'Res (1000px*1000px)') !!} {!! Form::file('image', ['id' => 'upload_image', 'accept' => 'image/*', 'class' => 'upload-element']); !!}

@lang('purchase.max_file_size', ['size' => (config('constants.document_size_limit') / 1000000)])
@lang('lang_v1.aspect_ratio_should_be_1_1')
@lang('lang_v1.previous_image_will_be_replaced')

@if($is_repair_installed)
@show_tooltip(__('repair::lang.use_for_repair_help_text'))
@endif
{!! Form::close() !!}