{!! trans('admin/file_center.detail.title',['title'=>$fileCenter->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/file_center.form.status")) }}
{{html()->select()->options( $form['statuses'])->required(true)->name("status")->value($fileCenter->status)->id("form-status")->class("form-control")}}
{{html()->label()->for("lang")->html(trans("admin/file_center.form.lang")) }}
{{html()->span()->html($fileCenter->language!==null ? $fileCenter->language->title : $fileCenter->lang_code)->id("form-lang")->class("form-control")}}
{{html()->label()->for("formTitle")->html(trans("admin/file_center.form.title")) }}
{{html()->input()->name("title")->id("formTitle")->required(true)->value($fileCenter->title)->class("form-control")}}
{{html()->label()->for("description")->html(trans("admin/file_center.form.description")) }}
{{html()->textarea()->name("description")->id("form-description")->value($fileCenter->description)->class("form-control editor")->style(['min-height'=>'150px','max-height'=>'150px'])}}
{{html()->label()->for("formSlug")->html(trans("admin/file_center.form.slug")) }}
{{html()->input()->name("slug")->value($fileCenter->slug)->required(true)->disabled(true)->id("formSlug")->class("form-control")}}
{{html()->checkbox()->name("slug_status")->id("formSlugStatusInfo")}}
{{html()->label()->for("formSlugStatusInfo")->html(trans("admin/file_center.form.slug_status"))->style(['font-size'=>'12px'])}}
{{html()->label()->for("seo_title")->html(trans("admin/product.categories.form.seo_title")) }}
{{html()->input()->name("seo_title")->id("form-seo_title")->value($fileCenter->seo_title)->class("form-control")}}
{{html()->label()->for("seo_keywords")->html(trans("admin/product.categories.form.seo_keywords")) }}
{{html()->input()->name("seo_keywords")->value($fileCenter->seo_keywords)->id("form-seo_keywords")->class("form-control")}}
{{html()->label()->for("seo_description")->html(trans("admin/product.categories.form.seo_description")) }}
{{html()->textarea()->name("seo_description")->value($fileCenter->seo_description)->id("form-seo_description")->class("form-control")->style(['min-height'=>'100px','max-height'=>'100px'])}}
{{ html()->button()->type("submit")->class("btn btn-info btn-sm")->id("btnAction")->html(trans("admin/file_center.detail.form.action")) }}
{{ html()->form()->close() }}