HEX
Server: Apache/2.4.58 (Ubuntu)
System: Linux Bradford-Sitios 6.14.0-1017-azure #17~24.04.1-Ubuntu SMP Mon Dec 1 20:10:50 UTC 2025 x86_64
User: www-data (33)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/www/plan-b.bradford/storage/framework/views/0e8d47d5bb5bb3600b38555df64f7502bbf197ee.php
<!DOCTYPE html>
<html lang="es">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title><?php echo e(isset($title) ? $title . ' |' : ''); ?> <?php echo e(APP_NAME); ?></title>

    <link rel="shortcut icon" type="image/x-icon" href="<?php echo e(asset(URL_LOGO_FAVICON)); ?>">
    <link id="style" href="<?php echo e(asset(ASSETS_LIBS)); ?>/bootstrap/css/bootstrap.min.css" rel="stylesheet">
    <link href="<?php echo e(asset(ASSETS_CSS)); ?>/style.css" rel="stylesheet">
    <link href="<?php echo e(asset(ASSETS_CSS)); ?>/icons.css" rel="stylesheet">
</head>

<body class="login-img">
    <!-- BACKGROUND-IMAGE -->
    <div class="">
        <!-- PAGE -->
        <div class="page">
            <!-- CONTAINER OPEN -->
            <div class="container-lg">
                <div class="row justify-content-center mt-4 mx-0">
                    <div class="col-xl-4 col-md-6 col-sm-10">
                        <div class="card shadow-none">
                            <div class="card-header justify-content-center" style="margin-bottom: -20px">
                                <div class="">
                                    <div class="text-center">
                                        <img src="<?php echo e(asset(URL_LOGO)); ?>" class="header-brand-img" alt="logo"
                                            width="180px">
                                    </div>
                                </div>
                            </div>
                            <?php echo $__env->yieldContent('contenido'); ?>
                        </div>
                    </div>

                </div>
                <div class="text-center text-white">
                    <p> Copyright &copy; 2024 <?php echo e(APP_NAME); ?> | Todos los derechos Reservados.
                        <br>
                        Desarrollado por
                        <a href="<?php echo e(URL_DESIGN); ?>" target="_blank">
                            <b class="text-info"><?php echo e(NAME_DESIGN); ?></b>
                        </a>
                    </p>
                </div>
            </div>
            <!-- CONTAINER CLOSED -->

        </div>
        <!-- End PAGE -->
    </div>
    <script src="<?php echo e(asset(ASSETS_JS)); ?>/jquery-3.6.0.min.js"></script>
    <link rel="stylesheet" href="<?php echo e(asset(ASSETS_CSS)); ?>/toastr.min.css">
    <script src="<?php echo e(asset(ASSETS_JS)); ?>/toastr.min.js"></script>
    <style>
        #toast-container>div {
            opacity: 1 !important;
        }

        .toast-title {
            font-weight: 700;
            text-transform: uppercase;
        }
    </style>
    <script nonce="<?php echo e(app('csp_nonce')); ?>">
        toastr.options = {
            "closeButton": true,
            "progressBar": true,
        }

        <?php if(session()->has('success_message')): ?>
            toastr["success"](`<?php echo session()->get('success_message'); ?>`, "<?php echo session()->get('success_message_title'); ?>")
        <?php endif; ?>

        <?php if(session()->has('warning_message')): ?>
            toastr["warning"](`<?php echo session()->get('warning_message'); ?>`, "<?php echo session()->get('warning_message_title'); ?>")
        <?php endif; ?>

        <?php if(session()->has('danger_message')): ?>
            toastr["error"](`<?php echo session()->get('danger_message'); ?>`, "<?php echo session()->get('danger_message_title'); ?>")
        <?php endif; ?>

        <?php if($errors->any()): ?>
            <?php
                $errorMessages = implode('<br>', $errors->all()); // Usar <br> para separar los mensajes de error
                $error = 'Se encontraron los siguientes errores: <br>' . $errorMessages;
            ?>
            toastr["error"](`<?php echo $error; ?>`, "Error de Validación");
        <?php endif; ?>
    </script>
    <?php echo $__env->yieldContent('js_content'); ?>
</body>

</html>
<?php /**PATH /var/www/plan-b.bradford/resources/views/layout/layout_no_login.blade.php ENDPATH**/ ?>