{!! Form::select(
'owner_type',
[
'' => 'Select',
'individual' => 'Individual',
'partnership firm' => 'Partnership Firm',
'private limited company' => 'Private Limited Company',
'limited company' => 'Limited Company',
'llp' => 'LLP',
'huf' => 'HUF',
],
old('owner_type'),
['class' => 'form-control', 'id' => 'owner_type', 'required'],
) !!}
{{ $errors->first('owner_type') }}
{!! Form::select(
'manufacturer',
[
'' => '--Select--',
'Tata Motors' => 'Tata Motors',
'Ashok Leyland' => 'Ashok Leyland',
'Mahindra Truck & Bus' => 'Mahindra Truck & Bus',
'Eicher Trucks & Buses' => 'Eicher Trucks & Buses',
'BharatBenz' => 'BharatBenz',
'VE Commercial Vehicles (VECV)' => 'VE Commercial Vehicles (VECV)',
'Volvo Trucks India' => 'Volvo Trucks India',
'Force Motors' => 'Force Motors',
'Maruti Suzuki Commercial' => 'Maruti Suzuki Commercial',
'Isuzu Motors India' => 'Isuzu Motors India'
],
old('manufacturer'),
['class' => 'form-control', 'id' => 'manufacturer'],
) !!}
{{ $errors->first('manufacturer') }}
{!! Form::select(
'vehicle_type',
['' => '--Select--', 'self' => 'Self', 'market' => 'Market'],
old('vehicle_type'),
['class' => 'form-control', 'id' => 'vehicle_type', 'required'],
) !!}
{{ $errors->first('vehicle_type') }}
@if (\App\Http\Helpers\CommonHelper::checkGeneralSetting('maintain_balance') == 'yes')
@endif