{{ t('upgrade_subscription') }}

{{ t('upgrade_subscription') }}

{{ t('select_new_plan_below') }}

{{ t('back_to_subscription') }}

{{ t('current_plan') }}

{{ t('you_are_currently_on_the') }}{{ $subscription->plan->name }} {{ t('upgrade_plan_desc') }}

@if (session('error'))

{{ session('error') }}

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

{{ session('success') }}

@endif @if ($plans->isEmpty())

{{ t('no_higher_tier_plans') }}

@else

{{ t('before_you_upgrade') }}

{{ t('immediate_payment') }}

{{ t('payment_required_active_plan') }}

{{ t('prorated_billing') }}

{{ t('credit_applied_unused_time') }}

{{ t('instant_switch') }}

{{ t('features_available_after_payment') }}

@foreach ($plans as $plan)

{{ $plan->name }}

{{ t('available') }}
{{ get_base_currency()->symbol }} {{ number_format($plan->price, 2) }} /{{ ucfirst($plan->billing_period) }}

{{ $plan->description }}

{{ t('plan_features') }}

    @foreach ($plan->features ?? [] as $feature) @if ($feature->value != 0)
  • {{ $feature->name }}: {{ $feature->value == '-1' ? 'Unlimited' : number_format($feature->value) }}
  • @endif @endforeach
@csrf @php $pendingPlanChange = $subscription->getUnpaidChangePlanInvoice(); @endphp @if ($pendingPlanChange)
@endif
@endforeach
@endif