{{-- Logo --}} @if ($needsAccount) {{-- Guest checkout - needs account creation --}}

Payment received

Create your account to access your new subscription.

@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif

Already have an account? Sign in

@elseif ($order) @if ($order->isPaid()) {{-- Success State --}}

Payment successful

Thank you for your order. Your account has been activated.

Order number {{ $order->order_number }}
Amount {{ app(Mod\Commerce\Services\CommerceService::class)->formatMoney($order->total, $order->currency) }}
Email {{ $order->billing_email }}

A confirmation email has been sent to {{ $order->billing_email }}

@elseif ($isPending) {{-- Pending/Processing State --}}

Processing payment

Waiting for your payment to be confirmed. This may take a few minutes for crypto payments.

Order number {{ $order->order_number }}
Status {{ ucfirst($order->status) }}

This page will automatically update when payment is confirmed.

@else {{-- Failed State --}}

Payment issue

There was a problem with your payment. Please try again or contact support.

@endif @else {{-- No Order Found --}}

Order not found

Couldn't find this order. It may have expired or been completed.

Return to homepage
@endif