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