Application Status

School: {{ $applicant->school_name ?? 'Not set yet' }}

{{ $applicant->status }}
1
2
3
4
{{-- 1. Step: Provide School Details --}} @if(!$applicant->school_name || !$applicant->subdomain)

Step 2: School Information

Tell us more about your school to initiate the provisioning process.

@csrf
.paymyriderw.com
{{-- 2. Step: Payment --}} @elseif($applicant->status == 'pending' && $applicant->amount_paid <= 0 && !$applicant->proof_of_payment)

Step 3: Payment & Verification

To finalize your setup, a one-time provisioning fee of RWF50,000.00 is required.

Option 1: Pay Online (Instant Activation)

Pay securely using MTN Mobile Money, Airtel Money.

@csrf

Option 2: Bank Transfer (Manual)

Bank: PayRide Central Bank

Acc Name: PayMyRide Solutions Ltd

Acc No: 1234567890

Ref: {{ $applicant->username }}

@csrf
{{-- 3. Step: Under Review --}} @elseif($applicant->status == 'pending' && ($applicant->amount_paid > 0 || $applicant->proof_of_payment))

Application Under Review

We have received your payment details. Our administrative team is currently verifying the information and setting up your dedicated environment.

You will receive an email once your school is ready. Usually takes 12-24 hours.

{{-- 4. Step: Approved --}} @elseif($applicant->status == 'approved')

Congratulations! Your school is ready.

Your dedicated management environment has been provisioned and is ready for use.

Your School Details

Default Admin Credentials

Use these details for your first login. Please change your password immediately after logging in.

Login URL: Go to Login
Username: admin
Default Password: password

If you have any issues, please contact support at support@paymyriderw.com

@endif