@extends('member.layout') @section('title', 'Edit Loan Application') @section('content')

Edit Loan Application

Pending Application
@csrf @method('PUT')
Application Details
@error('amount')
{{ $message }}
@enderror Minimum: KSh 1,000 | Maximum: KSh 500,000
@error('application_date')
{{ $message }}
@enderror
@error('return_date')
{{ $message }}
@enderror
@error('purpose')
{{ $message }}
@enderror
Loan Calculator
Important Information
SECURITY & GUARANTEES
@if($loan->guarantees) @foreach($loan->guarantees as $guarantee) @if($guarantee->guarantee_type === 'salary' && $guarantee->salaryGuarantee)
Salary Guarantee
@elseif($guarantee->guarantee_type === 'collateral' && $guarantee->collateral)
Collateral Guarantee
@elseif($guarantee->guarantee_type === 'guarantor' && $guarantee->guarantors->count() > 0) @foreach($guarantee->guarantors as $guarantor)
Guarantor
@endforeach @endif @endforeach @endif
@error('guarantee')
{{ $message }}
@enderror
Add security/guarantee for the loan application to improve approval chances.
@push('js') @endpush @endsection