{{-- Modal form to confirm deletion of resource --}} {!! Form::open([ 'method' => 'DELETE', 'route' => ["$route.destroy", $resource->getKey()], 'id' => 'delete-modal-form-' . $resource->getKey(), 'class' => 'reveal-modal small', 'data-reveal' ]) !!}

{{ sprintf(_("Delete '%s'"), $resource) }}

{{ _('Are you sure?') }}

{{ _('Cancel') }}
{!! Form::submit(_('Confirm'), ['class' => 'alert button expand']) !!}
× {!! Form::close() !!} @section('js') @parent @stop