{!! Form::open(['route' => 'admin.catalog.tender.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']) !!}
{!! Form::label('default_language', trans('app.translate_language'). '*') !!}
{!! Form::label('company', trans('app.form.company') . '*', ['class' => 'with-help']) !!} {!! Form::text('company', null, ['class' => 'form-control', 'placeholder' => trans('app.placeholder.company'), 'required']) !!}
{!! Form::label('description', trans('app.form.description') . '*', ['class' => 'with-help']) !!} {!! Form::textarea('description', null, ['class' => 'form-control summernote', 'rows' => '4', 'placeholder' => trans('app.placeholder.description'), 'required']) !!}
{!! $errors->first('description', ':message') !!}

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

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