Register

EDIT THIS ORDER

Shopping Cart

Registrant

Name {{$user->full_name}}
Address {{$user->address}}
{{$user->city}}, {{$user->state}} {{$user->zip}}
{{$user->country}}
Phone {{localize_us_number($user->phone)}}
Email {{$user->email}}
@if($order->attendees->count() > 0)

Badges

Name {{$order->attendees[0]->tag_line_1}}
City/Group: {{$order->attendees[0]->tag_line_2}}
Affiliation: {{$order->attendees[0]->affiliation_type?->name}}
@endif @if($order->golfers->count() > 0)

Golfers in your party

Golf:
Golfer 1: {{$order->golfers[0]->golfer1}}
Golfer 2: {{$order->golfers[0]->golfer2}}
Golfer 3: {{$order->golfers[0]->golfer3}}
Golfer 4: {{$order->golfers[0]->golfer4}}
@endif
@if(count($order->attendees) > 1)

Additional Registrants

@for($i = 1; $i < count($order->attendees); $i++)
Badge {{($i + 1)}}
@if($order->golfers->count() > 0) @else @endif
Name {{$order->attendees[$i]->tag_line_1}}
City/Group: {{$order->attendees[$i]->tag_line_2}}
Affiliation: {{$order->attendees[$i]->affiliation_type->name}}
Golf:YesNo

@endfor @endif
@if($order->items)

Items To Be Ordered

@foreach($order->items as $item) @php $subtotal = $item->quantity * $item->product->price; @endphp @endforeach @if($order->comments != "") @endif
Item Qty Each Total
{{ $item->product->subtitle }} {{ $item->product->title }} @if($item->product->category_id == 15)

Personalized text:

{{$item->custom_option}}
{{$item->custom_option2}}
@endif
{{ $item->quantity }} ${{ number_format($item->product->price,2) }}${{ number_format($subtotal,2) }}
Total to be charged ${{number_format($order->amount,2)}}

Notes/Group Seating/Special Requests

{!! $order->comments !!}
@endif
{!! Form::open(['route' => ['admin.users.show', ['user' => $order->user_id]], 'method' => 'GET']) !!} {{Form::hidden('order_id', $order->id)}}

Payment Type

{{ Form::label('payment_type_id', ' ', ['class' => 'col-sm-12 control-label text-left']) }}
{{ Form::select('payment_type_id', $payment_types, 1, ['class' => 'text-xl dark:bg-slate-700 dark:text-slate-300 dark:border-slate-900']) }}

Check number

{{ Form::label('check_number', ' ', ['class' => 'col-sm-12 control-label text-left']) }}
{{ Form::text('check_number', null, ['class' => 'text-xl dark:bg-slate-700 dark:text-slate-300 dark:border-slate-900']) }}

Amount

{{ Form::label('amount', ' ', ['class' => 'col-sm-12 control-label text-left']) }}
{{ Form::text('amount', $order->amount, ['class' => 'text-xl dark:bg-slate-700 dark:text-slate-300 dark:border-slate-900']) }}

Notes/Special Requests (optional)

{{ Form::label('comments', ' ', ['class' => 'col-sm-12 control-label text-left']) }}
{{ Form::textarea('comments', null, ['class' => 'text-xl dark:bg-slate-700 dark:text-slate-300 dark:border-slate-900', 'rows' => '3'],) }}
{!! Form::close() !!}