@extends('layout.app') @section('title','Edit Vehicle') @push('headerscript') @endpush @section('content')
{!! Form::open(['route' => ['vehicle.update',$vehicleData->id], 'method' => 'put','autocomplete'=>'off']) !!}
{{$errors->first('owner_name')}}
{!! Form::select('vehicle_type', [''=>'--Select--','self'=>'Self','market'=>'Market'], $vehicleData->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