Viewing file: 6d18edadccf661c3f5b63d32f6a19e90ac86018d.php (2.26 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<div id="notifications" class="row no-print">
<div class="col-md-12">
<?php if($errors->any()): ?>
<div class="noti-alert pad no-print">
<div class="alert alert-danger alert-dismissable d-flex justify-content-between">
<ul class="mb-0">
<?php $__currentLoopData = $errors->all(); $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $error): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<li><?php echo e($error); ?></li>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
</ul>
<button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button>
</div>
</div>
<?php endif; ?>
<div class="noti-alert pad no-print">
<?php $__currentLoopData = ['success', 'danger', 'fail', 'warning', 'info']; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $msg): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<?php if($message = Session::get($msg)): ?>
<div
class="alert alert-<?php echo e($msg == 'fail' ? 'danger' : $msg); ?> fade show d-flex justify-content-between align-items-center">
<strong><?php echo $message; ?></strong>
<button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button>
</div>
<?php endif; ?>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
</div>
<div class="top-notification noti-alert pad no-print js-alert d-none">
<div class="alert alert-success">
<strong class="alertText"></strong>
<button type="button" class="btn-close <?php echo e(languageDirection() == 'ltr' ? 'float-right' : 'float-left'); ?> notification-close" aria-label="Close"></button>
</div>
</div>
</div>
</div>
<?php /**PATH /home/picotech/domains/ecom1.picotech.app/public_html/resources/views/admin/layouts/includes/notifications.blade.php ENDPATH**/ ?>
|