Path : /var/www/html/jewelry-pos/storage/framework/views/ |
B-Con CMD Config cPanel C-Rdp D-Log Info Jump Mass Ransom Symlink vHost Zone-H |
Current File : /var/www/html/jewelry-pos/storage/framework/views/269ecaaa0c0b06f67e1b7a0d2b1600bb.php |
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title> <?php echo e(__('message.login')); ?> </title> <meta name="description" content="Basic Inputs"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no, user-scalable=no, minimal-ui"> <!-- Call App Mode on ios devices --> <meta name="apple-mobile-web-app-capable" content="yes" /> <!-- Remove Tap Highlight on Windows Phone IE --> <meta name="msapplication-tap-highlight" content="no"> <meta name="csrf_token" content="<?php echo e(csrf_token()); ?>"> <!-- base css --> <link id="vendorsbundle" rel="stylesheet" media="screen, print" href="<?php echo e(asset('admin-asset/css/vendors.bundle.css')); ?>"> <link id="appbundle" rel="stylesheet" media="screen, print" href="<?php echo e(asset('admin-asset/css/app.bundle.css')); ?>"> <link id="mythemes" rel="stylesheet" media="screen, print" href="#"> <link id="myskins" rel="stylesheet" media="screen, print" href="<?php echo e(asset('admin-asset/css/skins/skin-master.css')); ?>"> <!-- Place favicon.ico in the root directory --> <link rel="apple-touch-icon" sizes="180x180" href="<?php echo e(asset('logo.png')); ?>"> <link rel="icon" type="image/png" sizes="32x32" href="<?php echo e(asset('logo.png')); ?>"> <link rel="mask-icon" href="<?php echo e(asset('logo.png')); ?>" color="#5bbad5"> <link rel="icon" href="<?php echo e(asset('fav.ico')); ?>" type="image/x-icon"> <link rel="shortcut icon" href="fav.ico" type="image/x-icon"> </head> <body style="background-image: url('images/bg-login.png');background-repeat: no-repeat; background-size: 100% 100%; max-height: 100%;font-family: 'Khmer OS Siemreap'"> <!-- BEGIN Page Wrapper --> <?php echo $__env->make('app.alert', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> <div class="panel-container show"> <div class="panel-content"> <header class="page-header" role="banner" style="background-color: #07070766;"> <!-- we need this logo when user switches to nav-function-top --> <div id="logo-group" style="float:left;"> <a href="<?php echo e(route('home')); ?>" title="Visit Site" style="display: inline;"> <span id="logo"> <img src="<?php echo e(asset('logo.png')); ?>" alt="<?php echo e(__('message.logo')); ?>" style="height:55px;"> </span> </a> </div> <div class="ml-auto d-flex"> <div class="btn-group"> <button class="btn dropdown-toggle mx-2 shadow-1 border border-primary" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> <?php if(app()->getLocale() == 'en'): ?> <a href="/lang/en" class="pull-right"><img src="<?php echo e(asset('en.png')); ?>" class="flag" alt="English"> English</a> <?php elseif(app()->getLocale() == 'kh'): ?> <a href="/lang/en" class="pull-right"><img src="<?php echo e(asset('kh.png')); ?>" class="flag" alt="English"> ខ្មែរ</a> <?php else: ?> <a href="/lang/th" class="pull-right"><img src="<?php echo e(asset('th.png')); ?>" class="flag" alt="ไทย"> ไทย</a> <?php endif; ?> </button> <div class="dropdown-menu dropdown-menu-animated"> <a href="/lang/en" class="dropdown-item active"> <img src="<?php echo e(asset('en.png')); ?>" style="width:20px;"> English </a> <a href="/lang/kh" class="dropdown-item"> <img src="<?php echo e(asset('kh.png')); ?>" style="width:20px;"> ខ្មែរ </a> <a href="/lang/th" class="dropdown-item"> <img src="<?php echo e(asset('th.png')); ?>" style="width:20px;"> ไทย </a> </div> </div> </div> </header> </div> <div class="bg-image"> <section class="vh-100"> <div class="container-fluid"> <div class="row d-flex justify-content-center"> <div class="col-md-8 col-lg-4 mt-4 "> <form class="card p-4 pb-4 mb-6 bg-faded border border-primary shadow h-20 mt-4" method="POST" action="<?php echo e(route('login')); ?>" style="background-color: rgba(34, 34, 34, 0.788);"> <?php echo csrf_field(); ?> <div class="d-flex flex-row align-items-center justify-content-center justify-content-lg-center m-2"> <h2 style="font-weight: bold; font-size: 2rem;color: white;"> <?php echo e(__('message.login')); ?></h2> </div> <!-- Email input --> <div class="form-outline mb-4"> <label class="form-label" style="color:white;"><?php echo e(__('message.phone')); ?> </label> <input type="text" id="form3Example3" class="form-control form-control-lg" placeholder="<?php echo e(__('message.phone')); ?>" name="phone" value="<?php echo e(old('phone')); ?>" autocomplete="phone" autofocus required /> <?php $__errorArgs = ['phone']; $__bag = $errors->getBag($__errorArgs[1] ?? 'default'); if ($__bag->has($__errorArgs[0])) : if (isset($message)) { $__messageOriginal = $message; } $message = $__bag->first($__errorArgs[0]); ?> <span class="invalid-feedback" role="alert"> <strong><?php echo e($message); ?></strong> </span> <?php unset($message); if (isset($__messageOriginal)) { $message = $__messageOriginal; } endif; unset($__errorArgs, $__bag); ?> </div> <!-- Password input --> <div class="form-outline mb-3"> <label class="form-label" for="form3Example4" style="color:white;"><?php echo e(__('message.password')); ?></label> <input type="password" id="myInput" class="form-control form-control-lg" placeholder="<?php echo e(__('message.password')); ?>" name="password" required autocomplete="current-password" min="3" /> <?php $__errorArgs = ['password']; $__bag = $errors->getBag($__errorArgs[1] ?? 'default'); if ($__bag->has($__errorArgs[0])) : if (isset($message)) { $__messageOriginal = $message; } $message = $__bag->first($__errorArgs[0]); ?> <span class="invalid-feedback" role="alert"> <strong><?php echo e($message); ?></strong> </span> <?php unset($message); if (isset($__messageOriginal)) { $message = $__messageOriginal; } endif; unset($__errorArgs, $__bag); ?> </div> <div class="d-flex justify-content-between align-items-center"> <!-- Checkbox --> <div class="form-check mb-0"> <input class="form-check-input me-2" type="checkbox" value="" id="form2Example3" onclick="myFunction()" /> <label class="form-check-label" for="form2Example3" style="color:white"> <?php echo e(__('message.show passowrd')); ?> </label> </div> </div> <div class="text-center text-lg-start mt-4 pt-2"> <?php if(count($errors) > 0): ?> <?php $__currentLoopData = $errors->all(); $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $message): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <div class="alert alert-danger display-hide"> <button class="close" data-close="alert"></button> <span><?php echo e($message); ?></span> </div> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> <?php endif; ?> <input type="hidden" value="" id="ip" name="ip"> <button type="submit" class="btn btn-primary btn-lg btn-hover" style="padding-left: 2.5rem; padding-right: 2.5rem;color:white;"><?php echo e(__('message.login')); ?></button> </div> </form> </div> </div> </div> </section> </div> </div> <!-- END Page Setting --> <script src="<?php echo e(asset('admin-asset/js/vendors.bundle.js')); ?>"></script> <script src="<?php echo e(asset('admin-asset/js/app.bundle.js')); ?>"></script> </body> <!-- END Body --> <script> $.ajax( { url: "https://api.ipify.org", async: false, success: function(data) { document.querySelector('#ip').value = data; } }); function myFunction() { var x = document.getElementById("myInput"); if (x.type === "password") { x.type = "text"; } else { x.type = "password"; } } </script> </html> <?php /**PATH /var/www/html/jewelry-pos/resources/views/auth/login.blade.php ENDPATH**/ ?>