Viewing file: 6c518c987e62bdfc496865aa2e8374ffa4f95c7e.php (2.04 KB) -rwxrwxr-x Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php $__env->startSection('title',trans('auth.forget_pass')); ?>
<?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="auth-form"> <h4 class="text-center mb-4"><?php echo e(trans('auth.forget_pass')); ?></h4> <form action="<?php echo e(route('password.reset')); ?>" method="post"> <?php echo csrf_field(); ?> <div class="form-group"> <label><strong><?php echo e(trans('auth.email')); ?></strong></label> <input name="email" type="email" class="form-control" placeholder="<?php echo e(trans('auth.email_ex')); ?>"> </div> <div class="text-center"> <button type="submit" class="btn btn-primary btn-block"><?php echo e(trans('auth.submit')); ?></button> </div> </form> </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/picotech/domains/qr.picotech.app/public_html/resources/views/auth/forget_password.blade.php ENDPATH**/ ?>
|