@extends('admin.layout.master') @section('admin')
{{ Breadcrumbs::render('admin.product.categories.insert') }}

{{trans('admin/product.categories.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
{{html()->label()->for("status")->html(trans("admin/product.categories.form.status")) }} {{html()->select()->options( $form['statuses'])->required(true)->name("status")->value(1)->id("form-status")->class("form-control")}}
@if(count($parentCatDetail) > 0)
{{html()->label()->for("lang")->html(trans("admin/product.categories.form.lang")) }} : {{html()->span()->id("lang")->style(['font-size'=>'0.8rem'])->text($parentCatDetail["language"]!==null ? $parentCatDetail["language"]["title"]:$parentCatDetail["lang_code"])}} {{html()->hidden("lang")->name("lang")->value($parentCatDetail["lang_code"])}}
{{html()->label()->for("parent_category_title")->html(trans("admin/product.categories.form.parent_category_title")) }} : {{html()->span("parent_category_title")->id("parent_category_title")->style(['font-size'=>'0.8rem'])->text($parentCatDetail["title"])}}
@else
{{html()->label()->for("lang")->html(trans("admin/product.categories.form.lang")) }} {{html()->select()->options($form['languages'])->required(true)->name("lang")->id("form-lang")->class("form-control")}}
@endif
{{html()->label()->for("formTitle")->html(trans("admin/product.categories.form.title")) }} {{html()->input()->name("title")->required(true)->id("formTitle")->class("form-control")}}
{{html()->label()->for("description")->html(trans("admin/product.categories.form.description")) }} {{html()->textarea()->name("description")->id("form-description")->class("form-control editor")->style(['min-height'=>'150px','max-height'=>'150px'])}}
{{html()->label()->for("formSlug")->html(trans("admin/product.categories.form.slug")) }} {{html()->input()->name("slug")->required(true)->id("formSlug")->class("form-control")}} {{html()->span()->id("formSlugInfo")->html(trans("admin/product.categories.form.slug_info"))->style(['font-size'=>'12px'])}}
{{html()->label()->for("image")->html(trans("admin/product.categories.form.image")) }} {{html()->file()->name("image")->id("form-image")->class("form-control")}}
{{html()->label()->for("banner_image")->html(trans("admin/product.categories.form.banner_image")) }} {{html()->file()->name("banner_image")->id("form-banner_image")->class("form-control")}}
{{html()->label()->for("seo_title")->html(trans("admin/product.categories.form.seo_title")) }} {{html()->input()->name("seo_title")->id("form-seo_title")->class("form-control")}}
{{html()->label()->for("seo_keywords")->html(trans("admin/product.categories.form.seo_keywords")) }} {{html()->input()->name("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")->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/product.categories.insert.form.action")) }}
{{ html()->form()->close() }}
@endsection @section('admin.javascript')