{!! Form::label('name', __('models/cars.fields.name').':') !!}
{!! Form::text('name', null, ['class' => 'form-control', 'required', 'minlength' => 3, 'maxlength' => 100]) !!}
{!! Form::label('tags', __('models/cars.fields.tags').':') !!}
{!! Form::text('tags', null, ['id'=>'tags','class' => 'form-control'. ($errors->has('tags')?' is-invalid ':'') ]) !!}
@if ($errors->has('tags'))
{{ $errors->first('tags') }}
@endif
@push('page_css')
@endpush
@push('page_scripts')
@endpush