@extends('layouts.app') @section('title', 'Loan Application') @section('page-title', 'Loan Application') @section('content')
Back
{{ isset($loan) ? 'Edit Loan' : 'Issue / Process Loan' }}
Fill in loan details accurately
@csrf @if(isset($loan)) @method('PUT') @endif
Loan Information
@error('member_id')
{{ $message }}
@enderror
Rate: L${{ number_format($rate,2) }} = US$1.00
$
@error('amount')
{{ $message }}
@enderror
Upload application letter, guarantor forms, etc.
{{-- Guarantor --}}
Guarantor Information
Loan Calculator
Estimated Payment
Monthly Installment
Total Interest
Total Repayment
Calculated on reducing balance
Cancel
@push('scripts') @endpush @endsection