@extends('layouts.app') @section('title') Update {{$loan->type}} @stop @section('breadcrumb')
Home
Add Loan
@stop @section('content')
Update {{$loan->type}}
{{csrf_field()}}
Employee
*
@if($employees->count() > 0 )
Select Employee
@foreach($employees as $employee)
{{ $employee->name }}
@endforeach @endif
@if ($errors->has('name'))
{{ $errors->first('name') }}
@endif
Date
*
Type
*
Loan
Advance
@if ($errors->has('type'))
{{ $errors->first('type') }}
@endif
Amount
*
Rs
@if ($errors->has('loan'))
{{ $errors->first('loan') }}
@endif
Payment Method
*
Bank Transper (IBFT)
Cheque /DD/PO
Cash
@if ($errors->has('payment_method'))
{{ $errors->first('payment_method') }}
@endif
Due Amount
Rs
@if ($errors->has('due_amount'))
{{ $errors->first('due_amount') }}
@endif
Receipt No
*
No
@if ($errors->has('receipt_no'))
{{ $errors->first('receipt_no') }}
@endif
Notes
{{$loan->notes}}
@if ($errors->has('notes'))
{{ $errors->first('notes') }}
@endif
@if($loan->instrument_no)
Instrument No:
*
No
@if ($errors->has('instrument_no'))
{{ $errors->first('instrument_no') }}
@endif
@endif
Submit
@stop @section('js') @stop