24 lines
1.2 KiB
PHP
24 lines
1.2 KiB
PHP
<div role="dialog" id="{{$modal_id}}" class="modal fade" style="display: none;">
|
|
{!! Form::open(array('url' => route('postResendTicketToAttendee', array('attendee_id' => $attendee->id)), 'class' => 'ajax reset closeModalAfter')) !!}
|
|
<div class="modal-dialog">
|
|
<div class="modal-content">
|
|
<div class="modal-header text-center">
|
|
<button type="button" class="close" data-dismiss="modal">×</button>
|
|
<h3 class="modal-title">
|
|
<i class="ico-envelope"></i>
|
|
Resend Ticket to {{{$attendee->full_name}}}
|
|
</h3>
|
|
</div>
|
|
<div class="modal-body">
|
|
<div class="help-block">
|
|
The attendee will be sent another copy of their ticket to <b>{{$attendee->event->organiser->email}}</b>
|
|
</div>
|
|
</div> <!-- /end modal body-->
|
|
<div class="modal-footer">
|
|
{!! Form::button('Cancel', ['class'=>"btn modal-close btn-danger",'data-dismiss'=>'modal']) !!}
|
|
{!! Form::submit('Send Ticket', ['class'=>"btn btn-success"]) !!}
|
|
</div>
|
|
</div><!-- /end modal content-->
|
|
{!! Form::close() !!}
|
|
</div>
|
|
</div> |