@extends('layouts.dash2') @section('title', 'Grant Application Results') @section('content')
@include('partials._mobile_header', [ 'title' => 'Grant Results', 'showBackButton' => true, 'backUrl' => route('dashboard'), 'showNotifications' => true, 'showDarkMode' => true, 'financeUser' => Auth::user() ])
@if($grant_limit <= 0)

We're Sorry

Your grant application could not be approved at this time

Based on your current account status and the information provided, we are unable to approve your grant application at this time. You may contact our support team for more information.

@else

Congratulations!

Your grant application has been pre-approved

You Requested

{{ Auth::user()->s_curr }}{{ number_format($latest_application->requested_amount, 2, '.', ',') }}

Pre-Approved Amount

{{ Auth::user()->s_curr }}{{ number_format($grant_limit, 2, '.', ',') }}

Based on your application and account information, you have been pre-approved for the grant amount shown above. Our team will review your application in detail and may contact you for additional information if needed.

@endif
@if($grant_limit > 0)

Next Steps

1

Application Review

Our team will review your application in detail within the next 3-5 business days.

2

Documentation

You may be asked to provide additional documentation to support your application.

3

Final Approval

Once approved, funds will be disbursed according to our grant payment schedule.

4

Reporting

All grant recipients are required to submit progress reports on how funds are being utilized.

@endif
@endsection