@extends('admin.layout.app') @section('title','Add Rental Operation') @push('headerscript') @endpush @section('content')

Add Rental Operation

{!! Form::open(['route'=>array('vehicle-movement.store'),'onsubmit'=>'BtnSubmit.disabled = true', 'method' => 'post']) !!}
{{$errors->first('voucher_code')}}
{{-- Input Type Hidden --}} {!! Form::select("branch_id", \App\Http\Helpers\Helper::getBranchData(), old("branch_id"), ['class'=>'form-control select2' ,'id' => 'branch_id','required'=>'required'] ) !!}
{!! Form::select("customer_id", [''=>'Select ']+$customers, old("customer_id"), ['class'=>'form-control select2', 'required', 'id'=>'customer_id'] ) !!}
{{$errors->first('customer_id')}}
{{$errors->first('start_date')}}
{{$errors->first('start_time')}}
{{$errors->first('due_date')}}
{!! Form::select("res_status", [''=>'Select','Booked'=>'Booked','Rented'=>'Rented','Past due Date'=>'Past due Date','Returned'=>'Returned','Cancelled'=>'Cancelled'], old("res_status"), ['class'=>'form-control', 'required', 'id'=>'res_status'] ) !!}
{{$errors->first('res_status')}}
Plate Number* Vehicle Band* Vehicle Model* Vehicle VIN No. Vehicle Year KM Out* No. of Days* Rate* Total* Vat* Grand Total* Status*
{!! Form::select("vehicle_id[]", [''=>'Select']+$vehicles, old("vehicle_id[]"), ['class'=>'form-control select2' ,'id' => 'vehicle_id1','required'=>'required'] ) !!} {{-- Input Type Hidden--}} {{-- Input Type Hidden--}}
{!! Form::close() !!}
@endsection @push('footerscript') @endpush