@if($application->status === 'pending')
Your application is still under review
Thank you for your patience. Our team is reviewing your application
and we'll notify you once a decision has been made.
Application Date: {{ $application->created_at->format('F d, Y') }}
@elseif($application->status === 'approved')
Congratulations! Your application has been approved
Welcome to our driver team! You can now log in to the driver portal
and start accepting delivery assignments.
Approved On: {{ $application->reviewed_at ? $application->reviewed_at->format('F d, Y') : 'N/A' }}
Go to Driver Portal
@else
Your application has been declined
We're sorry, but we are unable to approve your driver application at this time.
@if($application->admin_notes)
Reason: {{ $application->admin_notes }}
@endif
If you believe there has been a mistake or if you want to apply again with updated information,
please contact our support team.
@endif
Return to Home