{!! Form::open(['route' => 'admin.appearance.slider.store.translate', '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'). '*', ['class' => 'with-help']) !!} {!! Form::text('title', null, ['class' => 'form-control', 'placeholder' => trans('app.placeholder.title'),'required']) !!}
{{ trans('help.you_can_use_span_tag') }}
{!! Form::label('default_language', trans('app.translate_language'). '*') !!}
{!! Form::label('sub_title', trans('app.form.sub_title'), ['class' => 'with-help']) !!} {!! Form::text('sub_title', null, ['class' => 'form-control', 'placeholder' => trans('app.placeholder.sub_title')]) !!}
{{ trans('help.you_can_use_span_tag') }}
{!! Form::label('description', trans('app.form.description'), ['class' => 'with-help']) !!} {!! Form::text('description', null, ['class' => 'form-control', 'placeholder' => trans('app.placeholder.description')]) !!}
{{ trans('help.you_can_use_span_tag') }}

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

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