@extends('frontend.layouts.booking') @section('title', __('Guest Information')) @section('content')

{{ __('Enter guest details') }} ({{ __(':n entries', ['n' => $quantity]) }})

@csrf
{{ __('Purchaser details') }} {{ __('We’ll use these details for the purchase. Toggle “It’s me” on a guest to copy them over if you’re attending.') }}
@for($i = 0; $i < $quantity; $i++)
{{ __('Entry #:num', ['num' => $i + 1]) }}
@endfor
{{ __('Back') }}
@endsection @section('page_scripts') @endsection