Viewing file: bec1a53d51616b8327f5c946adb2ff4359928cd5.php (2.39 KB) -rwxrwxrwx Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<!DOCTYPE html> <html lang="<?php echo e(session()->get('locale')); ?>" class="h-100">
<head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width,initial-scale=1"> <title><?php echo $__env->yieldContent('title'); ?></title> <!-- Favicon icon --> <link rel="icon" href="<?php echo e(asset('uploads/'.json_decode(get_settings('site_setting'))->favicon)); ?>"> <link href="<?php echo e(asset('css/style.css')); ?>" rel="stylesheet"> <link rel="stylesheet" href="<?php echo e(asset("vendor/toastr/css/toastr.min.css")); ?>"> <?php echo $__env->yieldContent('css'); ?> </head>
<body class="h-100"> <?php echo $__env->yieldContent('main-content'); ?>
<script src="<?php echo e(asset('front/js/jquery.min.js')); ?>"></script> <script src="<?php echo e(asset("vendor/toastr/js/toastr.min.js")); ?>"></script> <?php echo $__env->yieldContent('js'); ?> <?php $allErrors=''; ?> <?php if(isset($errors) && count($errors) > 0): ?> <?php $__currentLoopData = $errors->all(); $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $error): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <?php $allErrors.=$error.'<br/>' ?> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> <script> $(function () { toastr.error('<?php echo clean($allErrors); ?>', 'Failed', {timeOut: 5000}); });
</script> <?php endif; ?>
<?php if(session()->has('success')): ?> <script> $(function () { toastr.info('<?php echo e(session()->get('success')); ?>', 'Success', { positionClass: "toast-top-right", timeOut: 5e3, closeButton: !0, debug: !1, newestOnTop: !0, progressBar: !0, preventDuplicates: !0, onclick: null, showDuration: "300", hideDuration: "1000", extendedTimeOut: "1000", showEasing: "swing", hideEasing: "linear", showMethod: "fadeIn", hideMethod: "fadeOut", tapToDismiss: !1 }); });
</script> <?php endif; ?>
</body> </html> <?php /**PATH /home/picotech/domains/test.qr.picotech.app/public_html/resources/views/layouts/auth.blade.php ENDPATH**/ ?>
|