{{trans('admin/product.features.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.features.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.features.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.features.form.title")) }}
{{html()->input()->name("title")->id("formTitle")->required(true)->class("form-control")}}
{{html()->label()->for("formDescription")->html(trans("admin/product.features.form.description")) }}
{{html()->input()->name("description")->id("formDescription")->class("form-control")}}
{{html()->label()->for("formType")->html(trans("admin/product.features.form.type")) }}
{{html()->select()->options($form['types'])->required(true)->name("type")->id("formType")->class("form-control")}}
{{html()->label()->for("formOptions")->html(trans("admin/product.features.form.options")) }}
{{html()->label()->for("formOption")->html(trans("admin/product.features.form.option_short")) }}
{{html()->input()->name("options[]")->id("formOption")->class("form-control")}}
{{ html()->button()->type("submit")->class("btn btn-info btn-sm")->id("btnAction")->html(' '.trans("admin/product.features.insert.form.action")) }}
{{ html()->form()->close() }}