Viewing file: fa19a6dfb6a4dee5362859eac3bb3fd7abd9d562.php (4 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php $__env->startSection('title',trans('auth.login_title')); ?> <?php $__env->startSection('main-content'); ?> <div class="authincation h-100"> <div class="container h-100"> <div class="row justify-content-center h-100 align-items-center"> <div class="col-md-6"> <div class="authincation-content"> <div class="row no-gutters"> <div class="col-xl-12"> <div class="text-center mt-2 d-none"><span class="text-red font-weight-bolder"><?php echo e(trans('Database is being refreshed every 2 hours')); ?></span></div>
<div class="auth-form"> <h4 class="text-center mb-4"><?php echo e(trans('auth.login_title')); ?></h4> <form action="<?php echo e(route('authenticate')); ?>" method="post"> <?php echo csrf_field(); ?> <div class="form-group"> <label class="mb-1"><strong><?php echo e(trans('auth.email')); ?></strong></label> <input type="email" class="form-control" placeholder="<?php echo e(trans('auth.email_ex')); ?>" name="email"> </div> <div class="form-group"> <label class="mb-1"><strong><?php echo e(trans('auth.password')); ?></strong></label> <input type="password" class="form-control" placeholder="<?php echo e(trans('auth.password')); ?>" name="password"> </div> <div class="form-row d-flex justify-content-between mt-4 mb-2"> <div class="form-group"> <div class="custom-control custom-checkbox ml-1"> <input type="checkbox" class="custom-control-input" id="basic_checkbox_1" name="remember_me"> <label class="custom-control-label" for="basic_checkbox_1"><?php echo e(trans('auth.remember_pass')); ?></label> </div> </div> <div class="form-group"> <a href="<?php echo e(route('forget.password')); ?>"><?php echo e(trans('auth.forget_pass')); ?>?</a> </div> </div> <div class="text-center"> <button type="submit" class="btn btn-primary btn-block"><?php echo e(trans('auth.sign_in')); ?></button> </div> </form> <div class="new-account mt-3"> <p><?php echo e(trans('auth.haven\'t_account')); ?> <a class="text-primary" href="<?php echo e(route('registration',['type'=>request()->get('type')])); ?>"><?php echo e(trans('auth.sign_up')); ?></a> </p> </div> </div> </div> </div> </div> </div> </div> </div> </div> <?php $__env->stopSection(); ?>
<?php echo $__env->make('layouts.auth', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/picoaqep/qr.picotech.app/resources/views/auth/login.blade.php ENDPATH**/ ?>
|