{{ __('Complete Your Payment') }}

{{ __('Review your selected package and confirm the payment method for secure checkout.') }}

{{ __('Order Summary') }}

{{ __('Package') }}{{ $subscription->package->name }}
{{ __('Drivers') }}{{ $subscription->package->driver_limit }}
{{ __('Trucks') }}{{ $subscription->package->truck_limit }}
{{ __('Billing Cycle') }}{{ $subscription->package->billing_cycle }}
{{ __('Total Amount') }} ${{ number_format($subscription->getNextBillingAmount(), 2) }}
@if ($subscription->isOnTrial())

{{ __('7-Day Free Trial Active') }}

{{ __('You can use the service until :date. After that, we will automatically bill your saved card based on your current driver count.', ['date' => $subscription->trial_ends_at->format('M j, Y')]) }}

@endif
@if ($message = Session::get('error'))
{{ $message }}
@endif

{{ __('Select Payment Method') }}

@if (count($paymentMethods) > 0)
@csrf
@forelse ($paymentMethods as $method) @empty
{{ __('No payment methods are currently available. Please contact support.') }}
@endforelse
{{ __('Cancel') }}
@else

{{ __('No payment methods are currently configured. Please contact the administrator.') }}

@endif

{{ __('Your payment information is secure and encrypted. We never store your full credit card details.') }}