@extends('layouts.app') @section('title', 'Request Additional Information - ' . $loan->loan_number) @section('content')
Loan Application Summary
${{ number_format($loan->amount, 2) }}
Loan Amount
{{ $loan->interest_rate }}%
Interest Rate
{{ $loan->duration_months }}
Duration (Months)
{{ $loan->client->first_name }} {{ $loan->client->last_name }}
Client Name
Specify Required Information
@csrf
Note: This will pause the loan application and send an email notification to the client requesting additional information. The client will not be able to reply to this email.
This information will be included in the email sent to the client.
@error('wait_reason')
{{ $message }}
@enderror
Email Preview
To: {{ $loan->client->email }}
Subject: Additional Information Required for Your Loan Application - {{ $loan->loan_number }}
Message:
Dear {{ $loan->client->first_name }} {{ $loan->client->last_name }},

Thank you for your interest in our loan services. We need some additional information to continue processing your loan application {{ $loan->loan_number }}.

Information Required:
[Your message will appear here]

Please provide the requested information by replying to this email or contacting our customer service team.

Best regards,
Credora Team
Back to Loan Details
@endsection