{!! Form::model($attendee, array('url' => route('postCancelAttendee', array('event_id' => $event->id, 'attendee_id' => $attendee->id)), 'class' => 'ajax')) !!}

Cancel {{$attendee->full_name}}

Cancelling Attendees will remove them from the attendee list.

If you would like to refund the order which this attendee belongs to you can do so here.


{!! Form::hidden('attendee_id', $attendee->id) !!} {!! Form::button('Cancel', ['class'=>"btn modal-close btn-danger",'data-dismiss'=>'modal']) !!} {!! Form::submit('Confirm Cancel Attendee', ['class'=>"btn btn-success"]) !!}
{!! Form::close() !!}