@extends('layouts.app') @section('title', 'Apply for Loan') @section('page-title', 'Loan Application') @section('content')
Apply for a Loan
Choose your currency — USD or LRD · Rate: L${{ number_format($rate,2) }}=US$1
@if($member->loans()->where('status','pending')->count() > 0)
You have a pending application under review. Please wait until it is processed.
@endif
@csrf
Loan Request
{{-- Currency selector --}}
@foreach(['USD'=>['$','#2e7d52'],'LRD'=>['L$','#1565c0']] as $cur=>[$sym,$color]) @endforeach
$
@error('amount')
{{ $message }}
@enderror
Guarantor
Cancel
Loan Estimate
At {{ $defaultRate }}% p.a.
Monthly (USD)
Monthly (LRD)
Total Interest
Total Payable
Exact terms confirmed upon approval
Your Account
@foreach([ ['Savings (USD)', '$'.number_format($member->savings_balance,2)], ['Savings (LRD)', 'L$'.number_format($member->savings_balance * $rate,2)], ['Monthly Contribution', '$'.number_format($member->monthly_contribution,2)], ['Max Eligible (3× savings)', '$'.number_format($member->savings_balance*3,2)], ] as [$lbl,$val])
{{ $lbl }}{{ $val }}
@endforeach
How it works
  1. Choose currency (USD or LRD)
  2. Submit application with documents
  3. Review within 2–5 business days
  4. Approval & disbursement
  5. Monthly payroll deductions begin
@push('scripts') @endpush @endsection