@extends('frontend.layouts.app') @section('title', 'Checkout - MyFamily Moments') @push('style') @endpush @push('head') @endpush @section('content') {{-- Keep your CSS exactly as in your template (omitted here for brevity) --}}
1
Plan Selection
2
Payment Details
3
Confirmation
{{-- Account and Billing sections left intact visually (user is already authenticated) --}}

Account Information

Logged in as {{ auth()->user()->email }}

Billing Information

Billing details can be updated in your profile after checkout.

Payment Method

@csrf
Order Summary
{{ $plan->trial_days }}-Day Free Trial
No charge today. Cancel anytime.
{{ $plan->name }} Plan
@if ($plan->is_featured) Most Popular @endif
{{ ucfirst($billing) }} billing
Ref: {{ $reference }}
{{ $plan->currencySymbol() }}{{ number_format($amount_cents / 100, 2) }}
/{{ $billing === 'yearly' ? 'year' : 'month' }}
What's included:
    @foreach ($plan->features_list as $f)
  • {{ $f }}
  • @endforeach
Subtotal {{ $plan->currencySymbol() }}{{ number_format($amount_cents / 100, 2) }}
Tax

Total Today {{ $plan->currencySymbol() }}0.00
After trial: {{ $plan->currencySymbol() }}{{ number_format($amount_cents / 100, 2) }}/{{ $billing === 'yearly' ? 'year' : 'month' }}
30-day money-back guarantee
@endsection @push('script') @endpush