Viewing file: ea438689df6cce2e3dcb51ae9231a02a.php (3.06 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php $__env->startSection('title','Forget password'); ?> <?php $__env->startSection('extra-style'); ?> <style> .login-body{ width: 30rem; } .login-img-sec { max-width: 450px; height: 100%; margin: 0 auto; } .login-img{ width: 100%; background-repeat: no-repeat; background-color: #fffff; background-size: contain; height: 100%; } body{ overflow: hidden; font-family: 'Montserrat', sans-serif; font-weight: 600; } @media (max-width: 768px){ .login-img-sec{ display: none; } .login-alien{ margin-top: 150px; } } .login-logo a, .register-logo a { color: #080808 !important; } .input-group-append { margin-left: -1px; border-left: 1px solid #ced4da !important; } .login-card-body .input-group .form-control, .register-card-body .input-group .form-control { border-right: 1px solid #ced4da !important; } </style> <?php $__env->stopSection(); ?> <?php $__env->startSection('content'); ?> <div class="card-body login-card-body"> <p class="login-box-msg"><?php echo app('translator')->get('passwords.title'); ?></p>
<form action="<?php echo e(route('password.sent')); ?>" method="post"> <?php echo csrf_field(); ?> <div class="input-group mb-3"> <div class="input-group-append"> <div class="input-group-text"> <span class="fas fa-envelope"></span> </div> </div> <input name="email" type="email" class="form-control" placeholder="<?php echo app('translator')->get('passwords.email'); ?>"> </div>
<div class="row justify-content-center"> <!-- /.col --> <div class="col-4"> <button type="submit" class="btn btn-primary btn-block"><?php echo app('translator')->get('auth.form.button.reset'); ?></button> </div> <!-- /.col --> </div> </form>
<!-- /.social-auth-links --> <div class="row mt-3"> <div class="col-8"> <p class="mb-1"> <a href="<?php echo e(route('login')); ?>"><?php echo app('translator')->get('auth.form.sign_in'); ?></a> </p> </div> <?php if($registration_status=='enable'): ?> <div class="col-4"> <p class="mb-0"> <a href="<?php echo e(route('signup')); ?>" class="text-center"><?php echo app('translator')->get('auth.form.registration'); ?></a> </p> </div> <?php endif; ?> </div> </div>
<?php $__env->stopSection(); ?>
<?php echo $__env->make('layouts.auth_customer', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/picotech/domains/sender.picotech.app/public_html/resources/views/auth/password_reset_form.blade.php ENDPATH**/ ?>
|