{!! Form::model($category_translate,['method' => 'PUT', 'route' => ['admin.catalog.category.update.translate', $category_translate->id], 'files' => true, 'id' => 'form', 'data-toggle' => 'validator']) !!}
{{ trans('app.form.add_translate') }}
@php $languages = \App\Models\Language::where('active',1)->get(); @endphp
{{-- {!! Form::label('title', trans('app.form.title'), ['class' => 'with-help']) !!}--}} {{-- --}} {{-- {!! Form::text('title', null, ['class' => 'form-control', 'placeholder' => trans('app.placeholder.title')],['value'=>$slider_title]) !!}--}} {{--
{{ trans('help.you_can_use_span_tag') }}
--}}
{!! Form::label('name', trans('app.form.category_name') . '*') !!} {!! Form::text('name', null, ['class' => 'form-control makeSlug', 'placeholder' => trans('app.placeholder.category_name'), 'required']) !!}
{!! Form::label('default_language', trans('app.translate_language'). '*') !!}
{!! Form::label('description', trans('app.form.description') . trans('app.form.optional'), ['class' => 'with-help']) !!} {!! Form::textarea('description', null, ['class' => 'form-control', 'placeholder' => trans('app.placeholder.category_description'), 'rows' => '1']) !!}
{!! Form::label('meta_title', trans('app.form.meta_title'), ['class' => 'with-help']) !!} {!! Form::text('meta_title', null, ['class' => 'form-control', 'placeholder' => trans('app.placeholder.meta_title')]) !!}
{!! Form::label('meta_description', trans('app.form.meta_description'), ['class' => 'with-help']) !!} {!! Form::textarea('meta_description', null, ['class' => 'form-control', 'placeholder' => trans('app.placeholder.meta_description'), 'rows' => '1']) !!}

* {{ trans('app.form.required_fields') }}

{!! Form::submit(trans('app.form.save'), ['class' => 'btn btn-flat btn-new']) !!}
{!! Form::close() !!}