@extends('layouts.app') @section('title', 'Convert to full access') @section('content') @if (session('error'))
{{ session('error') }}
@endif

Company: {{ $company->name }}
Company number: {{ $company->formattedCompanyNumber() }}
Status: {{ $company->status }} @if ($company->trial_ends_at)
Trial ends: {{ $company->trial_ends_at->format('M j, Y H:i') }} @endif

Monthly rate {{ $priceFormatted ?? ('$'.number_format($price, 2).' '.$currency) }}. Choose how many months to pay now — longer terms include a discount.

@csrf @include('partials.subscription-plan-picker', [ 'tiers' => $tiers ?? [], 'plans' => $plans, 'selectedMonths' => $selectedMonths, 'selectedPlan' => $selectedPlan, 'style' => 'app', ]) @include('partials.payment-gateway-picker', [ 'paymentGateways' => $paymentGateways ?? [], 'selectedPaymentProvider' => $selectedPaymentProvider ?? '', 'style' => 'app', ])
@endsection