{{trans('admin/product.brands.insert.title')}}
{{ html()->form()->method('POST')->class("form modulForm")->id("modulForm")->autocomplete("off")->attribute('enctype','multipart/form-data')->open() }}
@if($errors->any())
@foreach ($errors->all() as $error)
{!! $error !!}
@endforeach
@endif
@endforeach
{{html()->label()->for("status")->html(trans("admin/product.brands.form.status")) }}
{{html()->select()->options( $form['statuses'])->required(true)->name("status")->value(1)->id("form-status")->class("form-control")}}
{{html()->label()->for("lang")->html(trans("admin/product.brands.form.lang")) }}
{{html()->select()->options($form['languages'])->required(true)->name("lang")->id("form-lang")->class("form-control")}}
{{html()->label()->for("formTitle")->html(trans("admin/product.brands.form.title")) }}
{{html()->input()->name("title")->id("formTitle")->required(true)->class("form-control")}}
{{html()->label()->for("description")->html(trans("admin/product.brands.form.description")) }}
{{html()->textarea()->name("description")->id("form-description")->class("form-control editor")->style(['min-height'=>'150px','max-height'=>'150px'])}}
{{html()->label()->for("image")->html(trans("admin/product.brands.form.image")) }}
{{html()->file()->name("image")->id("form-image")->class("form-control image")}}
{{html()->label()->for("formSlug")->html(trans("admin/product.brands.form.slug")) }}
{{html()->input()->name("slug")->required(true)->id("formSlug")->class("form-control")}}
{{html()->span()->id("formSlugInfo")->html(trans("admin/product.brands.form.slug_info"))->style(['font-size'=>'12px'])}}
{{ html()->button()->type("submit")->class("btn btn-info btn-sm")->id("btnAction")->html(' '.trans("admin/product.brands.insert.form.action")) }}
{{ html()->form()->close() }}