@extends('layouts.subscriptions') @push('style') @endpush @section('content') @php $selectedBillingCycle = old('billing_cycle', 'subscribe'); $selectedBillingCycle = in_array($selectedBillingCycle, ['subscribe', 'one_month'], true) ? $selectedBillingCycle : 'subscribe'; $selectedPaymentMethod = old('payment_method', $selectedBillingCycle === 'one_month' ? 'card_networks' : 'credit_card'); @endphp
@if($errors->any())
{{ $errors->first() }}
@endif
@csrf

Select payment method

All transaction methods are protected by the payment provider, responsible for processing and authorization.
Subscribe
${{ number_format($subscriptionAmount, 2) }} / month
Your subscription will be automatically charged every month, and can be canceled at any time.
One month
${{ number_format($subscriptionAmount, 2) }}
One time payment
Credit card payment
Wallet Balance
${{ number_format($availableBalance, 2) }}
{{ $hasSufficientBalance ? 'Remaining after payment: $' . number_format($remainingBalance, 2) : 'Insufficient amount. Remaining after payment: $' . number_format($remainingBalance, 2) }}
Wallet Balance {{ $hasSufficientBalance ? 'Remaining: $' . number_format($remainingBalance, 2) : 'Insufficient amount, Remaining: $' . number_format($remainingBalance, 2) }}
Skrill
Total amount ${{ number_format($totalPayable, 2) }}
Seats {{ $slotsTaken }}
Package amount ${{ number_format($subscriptionAmount, 2) }}
Admin fee ${{ number_format($platformFee, 2) }}
Back to join page
@endsection @push('script') @endpush