{!! 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
{!! Form::label('photo', __('models/cars.fields.photo').':') !!}
{!! Form::file('photo', ['class' => 'custom-file-input']) !!} {!! Form::label('photo', 'Choose file', ['class' => 'custom-file-label']) !!}
{!! Form::hidden('is_active', 0) !!} {!! Form::checkbox('is_active', 1, null, ['id'=>'is_active','class' => 'custom-control-input']) !!} {!! Form::label('is_active', __('models/cars.fields.is_active').':', ['class' => 'custom-control-label']) !!}
@push('page_css') @endpush @push('page_scripts') @endpush