{!! Form::label('model_name', 'Model Name:') !!} {!! Form::text('model_name', null, ['class' => 'form-control','minlength' => 3]) !!}
{!! Form::label('manufacturer_name', 'Manufacturer Name:') !!} {!! Form::text('manufacturer_name', null, ['class' => 'form-control','minlength' => 3]) !!}
{!! Form::label('plate_no', 'Plate No:') !!} {!! Form::text('plate_no', null, ['class' => 'form-control','minlength' => 5]) !!}
{!! Form::label('licence_no', 'Licence No:') !!} {!! Form::text('licence_no', null, ['class' => 'form-control','minlength' => 5]) !!}
{!! Form::label('customs_no', 'Customs No:') !!} {!! Form::text('customs_no', null, ['class' => 'form-control','minlength' => 5]) !!}
{!! Form::label('year_of_manufacture', 'Year Of Manufacture:') !!} {!! Form::number('year_of_manufacture', null, ['class' => 'form-control']) !!}
{!! Form::label('market_value', 'Market Value:') !!} {!! Form::number('market_value', null, ['class' => 'form-control']) !!}
{!! Form::label('drive_shifter', 'Drive Shifter:') !!} {!! Form::select('drive_shifter', ['manual'=>'manual','automatic'=>'automatic'], 'automatic', ['class' => 'form-control','multiple']) !!}
{!! Form::label('parking_place_id', 'Parking Place:') !!} {!! Form::select('parking_place_id', \App\Models\ParkingPlace::pluck('name','id') , null, ['class' => 'form-control']) !!}
{!! Form::label('expected_kiloes', 'Expected Kiloes:') !!} {!! Form::text('expected_kiloes', null, ['class' => 'form-control','minlength' => 3]) !!}
{!! Form::label('is_modifications', 'Is Modifications:') !!}
{!! Form::label('modifications', 'Modifications:') !!} {!! Form::textarea('modifications', null, ['class' => 'form-control','minlength' => 5, 'rows' => 5]) !!}
{!! Form::label('images', 'Images:') !!} {!! Form::file('images', ['multiple' => 'multiple']) !!}
{!! Form::submit('Save', ['class' => 'btn btn-primary']) !!} Cancel