{!! Form::model($manufacturer_translate,['method' => 'PUT', 'route' => ['admin.catalog.manufacturer.update.translate', $manufacturer_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.name').'*', ['class' => 'with-help']) !!} {!! Form::text('name', null, ['class' => 'form-control', 'placeholder' => trans('app.placeholder.manufacturer_name'), 'required']) !!}
{!! Form::label('default_language', trans('app.translate_language'). '*') !!}
{!! Form::label('description', trans('app.form.description')) !!} {!! Form::textarea('description', null, ['class' => 'form-control summernote', 'placeholder' => trans('app.placeholder.description')]) !!}

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

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