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

{{ @trans("ManageEvent.cancel_attendee_title", ["cancel" => $attendee->full_name]) }}

@if ($attendee->order->is_payment_received)
@lang("ManageEvent.cancelling_order_will_refund_attendees", ['type' => 'attendee'])
@endif

{{ @trans("ManageEvent.cancel_description") }}

{!! @trans("ManageEvent.cancel_refund", ["url"=>route('showEventOrders', ['event_id' => $attendee->event->id, 'q' => $attendee->order->order_reference])]) !!}


{!! Form::hidden('attendee_id', $attendee->id) !!} {!! Form::button(trans("basic.cancel"), ['class'=>"btn modal-close btn-danger",'data-dismiss'=>'modal']) !!} {!! Form::submit(trans("ManageEvent.confirm_cancel"), ['class'=>"btn btn-success"]) !!}
{!! Form::close() !!}