/
home
/
obinna
/
html
/
cravings
/
storage
/
framework
/
views
/
Upload File
HOME
<?php $__env->startSection('stylesheets'); ?> ##parent-placeholder-8b563540d8e2cf00c7aab74292484dfc45d600e7## <link rel="stylesheet" href="/css/login.css"> <?php $__env->stopSection(); ?> <?php $__env->startSection('content'); ?> <div class="auth-login-wrapper"> <h3 style="padding-bottom: 20px;">Reset Password</h3> <div class=""> <main class="main"> <form class="login-form" action="<?php echo e(route('reset_password_email')); ?>" method="POST"> <?php echo csrf_field(); ?> <div class="row"> <?php if(session('status')): ?> <div class="alert alert-success" role="alert"> <?php echo e(session('status')); ?> </div> <?php endif; ?> <div class="col-sm-12 mb-2"> <div class="form-group"> <label for="email">Email Address</label> <input id="email" type="email" class="form-control<?php echo e($errors->has('email') ? ' is-invalid' : ''); ?>" name="email" value="<?php echo e(old('email')); ?>" required> <?php if($errors->has('email')): ?> <span class="invalid-feedback" role="alert"> <strong><?php echo e($errors->first('email')); ?></strong> </span> <?php endif; ?> </div> </div> <div class="col-sm-12 mb-2"> <button type="submit" name="submit" class="login-btn button-primary w-100">Send Password Reset Link</button> </div> </div> </form> </main> <footer class="mt-6"> <small>© 2022 - Cravvings. All rights reserved.</small> </footer> </div> </div> <?php $__env->stopSection(); ?> <?php $__env->startSection('javascript'); ?> <script src="/js/side.js"></script> <?php $__env->stopSection(); ?> <?php echo $__env->make('layouts.plains', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /var/www/html/cravings/resources/views/auth/passwords/email.blade.php ENDPATH**/ ?>