@extends('dashboard.user.layouts.app') @section('content')

{{ $title }}

@slot('header') Grant Application Results @endslot @if ($grantApplication->isPending())

Application Pending

Your grant application is currently under review.

Please allow some time for our team to verify your details. You’ll be notified once a decision has been made.

@csrf @method('PATCH')
@elseif($grantApplication->isApproved())

Application Approved

Congratulations! Your grant application has been approved. You may now access your grant benefits from your dashboard.

@elseif($grantApplication->isRejected())

Application Rejected

@if (!$grantApplication->review_notes) Unfortunately, your grant application was not approved. Please contact support for further clarification. @else {{ $grantApplication->review_notes }} @endif

@elseif ($grantApplication->isWithdrawn())

Application Withdrawn

You have withdrawn your grant application. If this was a mistake, please contact support to reapply.

@endif
@endsection