@php /** * $plans: array of available plans * $selected: selected plan id or null * $numTrucks: number of trucks (default 1) * $trial: whether the onboarding trial option is selected */ $selected = old('plan', $plan ?? $selected ?? null); $subscriptionType = old('subscription_type', 'paid'); $trial = $subscriptionType === 'trial'; @endphp @extends('layouts.themed-app') @section('content')

Choose Your Plan

@if ($errors->any())
@foreach ($errors->all() as $error)

{{ $error }}

@endforeach
@endif
@csrf
@foreach ($plans as $plan)
@endforeach
$5/month per additional truck
@endsection