@extends('layout.app') @section('title','Create Vehicle') @push('headerscript') @endpush @section('content')
{!! Form::open(['route' => ['vehicle.store'], 'method' => 'post','autocomplete'=>'off']) !!}
{{$errors->first('owner_name')}}
{!! Form::select('vehicle_type', [''=>'--Select--','self'=>'Self','market'=>'Market'], old('vehicle_type'), ['class'=>'form-control','id'=>'vehicle_type','required']) !!}
{{$errors->first('vehicle_type')}}
{{$errors->first('vehicle_no')}}
{{$errors->first('load_size')}}
{!! Form::close() !!}
@endsection @push('footerscript') @endpush