Note: You can add more than one guarantor for a borrower and guarantor must be an existing user.
@if ($showGuarantorDropdown)
Searching...
@forelse ($guarantorUsers as $userList)
{{ strtoupper(substr($userList->fullname, 0, 1)) }}
{{ $userList->fullname }}
{{ $userList->email }}
@empty
No user found
@endforelse
@endif @error('searchGuarantor')
{{ $message }}
@enderror
@error('contributing_percentage')
{{ $message }}
@enderror
@forelse ($guarantors as $guarantor)
{{ strtoupper(substr($guarantor['fullname'], 0, 1)) }}
{{ $guarantor['fullname'] }} {{ $guarantor['email'] }}
N{{ number_format(($loan_guarantor_amount * $guarantor['contributing_percentage']) / 100) }} {{ $guarantor['contributing_percentage'] }}% of 100
@empty
No guarantor added
@endforelse
Create guarantor account