{!! Form::model($inventory_translate,['method' => 'PUT', 'route' => ['admin.stock.inventory.update.translate', $inventory_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('title', trans('app.form.title') . '*') !!} {!! Form::text('title', null, ['class' => 'form-control', 'placeholder' => trans('app.placeholder.title'), 'required']) !!}
{!! Form::label('default_language', trans('app.translate_language'). '*') !!}
@if (config('system_settings.show_item_conditions'))
{!! Form::label('condition_note', trans('app.form.condition_note'), ['class' => 'with-help']) !!} {!! Form::text('condition_note', null, ['class' => 'form-control input-sm', 'placeholder' => trans('app.placeholder.condition_note')]) !!}
@endif
{!! Form::label('description', trans('app.form.description'), ['class' => 'with-help']) !!} {!! Form::textarea('description', null, ['class' => 'form-control summernote', 'placeholder' => trans('app.placeholder.description')]) !!}
{!! 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::text('meta_description', null, ['class' => 'form-control', 'maxlength' => config('seo.meta.description_character_limit', '160'), 'placeholder' => trans('app.placeholder.meta_description')]) !!}
{{ trans('help.max_chat_allowed', ['size' => config('seo.meta.description_character_limit', '160')]) }}

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

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