@extends('layouts.guest-payment') @section('content')

Payment Successful!

@if (session('success')) @endif @if (session('info')) @endif

{{ $message ?? 'Payment Completed Successfully!' }}

Your Black Belt Certificate payment has been processed.

Payment Details

User: {{ $recovery->user->fname }} {{ $recovery->user->lname }}

Email: {{ $recovery->user->email }}

Recovery Code: {{ $recovery->recovery_code }}

Amount Paid: ₹{{ number_format($recovery->amount, 2) }}

Payment Date: {{ $recovery->payment_completed_at?->format('d M Y, h:i A') ?? 'N/A' }}

Status: Payment Completed

Next Steps
    @if($showLoginButton ?? false)
  1. Login to your account using the button below
  2. Navigate to Black Belt Certificates section
  3. Download your certificate
  4. @else
  5. Navigate to Black Belt Certificates section from your dashboard
  6. Download your certificate
  7. @endif
@if($showLoginButton ?? false) Login to Access Certificate @else {{-- DISABLED: Black Belt Certificate Access (User Request) --}} {{-- Users should not be able to access black belt certificates --}} {{-- @php $roleName = Auth::user()->currentRole->name ?? 'athlete'; @endphp Download Certificate --}} Go to Dashboard @endif
@endsection