PATH:
home
/
rwabteecom
/
project_11
/
storage
/
framework
/
views
/
Editing: 5b1bd362b458ab5ccda9633a71a9be8b.php
<div class="modal fade" tabindex="-1" id="delete" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered"> <div class="modal-content rounded"> <form action="" class="delete_form" method="post"> <?php echo csrf_field(); ?> <?php echo method_field('DELETE'); ?> <div class="modal-header py-3"> <h3 class="modal-title" id="exampleModalLabel"> <?php echo e(__('Delete Confirmation')); ?> </h3> <div class="btn btn-sm btn-icon btn-active-color-primary" data-bs-dismiss="modal"> <span class="svg-icon svg-icon-1"> <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"> <rect opacity="0.5" x="6" y="17.3137" width="16" height="2" rx="1" transform="rotate(-45 6 17.3137)" fill="currentColor"></rect> <rect x="7.41422" y="6" width="16" height="2" rx="1" transform="rotate(45 7.41422 6)" fill="currentColor"></rect> </svg> </span> </div> </div> <div class="modal-body text-center" id="overlay"> <h4 class="text-danger mb-4"> <?php echo e(__('You are about to delete this record. Everything under this record will be deleted.')); ?> </h4> <h4 class="text-danger"> <?php echo e(__('Do you want to continue?')); ?> </h4> <div id="data"></div> </div> <div class="modal-footer py-3"> <button type="button" class="btn btn-light-primary font-weight-bold" data-bs-dismiss="modal"><?php echo e(__('Close')); ?></button> <button type="submit" class="btn btn-danger font-weight-bold"> <span class="indicator-label"><?php echo e(__('Delete')); ?></span> <span class="indicator-progress"> <?php echo e(__("Please wait...")); ?> <span class="spinner-border spinner-border-sm align-middle ms-2"></span> </span> </button> </div> </form> </div> </div> </div> <div class="modal fade" tabindex="-1" id="restore" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered"> <div class="modal-content rounded"> <form action="" class="restore_form" method="post"> <?php echo csrf_field(); ?> <div class="modal-header py-3"> <h3 class="modal-title" id="exampleModalLabel"> <?php echo e(__('Restore Confirmation')); ?> </h3> <div class="btn btn-sm btn-icon btn-active-color-primary" data-bs-dismiss="modal"> <span class="svg-icon svg-icon-1"> <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"> <rect opacity="0.5" x="6" y="17.3137" width="16" height="2" rx="1" transform="rotate(-45 6 17.3137)" fill="currentColor"></rect> <rect x="7.41422" y="6" width="16" height="2" rx="1" transform="rotate(45 7.41422 6)" fill="currentColor"></rect> </svg> </span> </div> </div> <div class="modal-body text-center" id="overlay"> <h4 class="mb-4"> <?php echo e(__('You are about to restore this record. Everything under this record will be restore.')); ?> </h4> <h4> <?php echo e(__('Do you want to continue?')); ?> </h4> <div id="data"></div> </div> <div class="modal-footer py-3"> <button type="button" class="btn btn-light-primary font-weight-bold" data-bs-dismiss="modal"><?php echo e(__('Close')); ?></button> <button type="submit" class="btn btn-success font-weight-bold"> <span class="indicator-label"><?php echo e(__('Restore')); ?></span> <span class="indicator-progress"> <?php echo e(__("Please wait...")); ?> <span class="spinner-border spinner-border-sm align-middle ms-2"></span> </span> </button> </div> </form> </div> </div> </div> <?php /**PATH /home/rwabtee/project/resources/views/global/index-modal.blade.php ENDPATH**/ ?>
SAVE
CANCEL