관리-도구
편집 파일: cff8ff5b96348346371ec5099fa68f258ae28f62.php
<?php $__env->startSection('content'); ?> <div class="container"> <div class="row justify-content-center"> <div class="col-md-5"> <div class="card card-signin my-5"> <div class="login-form-head"> <h4><?php echo e(_lang('Reset Password')); ?></h4> </div> <div class="card-body"> <?php if(session('status')): ?> <div class="alert alert-success" role="alert"> <?php echo e(session('status')); ?> </div> <?php endif; ?> <form method="POST" class="form-signin" action="<?php echo e(route('password.email')); ?>" autocomplete="off"> <?php echo csrf_field(); ?> <div class="form-group row"> <div class="col-md-12"> <input id="email" type="email" class="form-control<?php echo e($errors->has('email') ? ' is-invalid' : ''); ?>" name="email" placeholder="<?php echo e(_lang('Enter your Email')); ?>" value="<?php echo e(old('email')); ?>" required> <?php if($errors->has('email')): ?> <span class="invalid-feedback"> <strong><?php echo e($errors->first('email')); ?></strong> </span> <?php endif; ?> </div> </div> <div class="form-group row mb-0"> <div class="col-md-4 offset-md-2"> <button type="submit" class="btn btn-primary"> <?php echo e(_lang('Send Password Reset Link')); ?> </button> </div> </div> </form> </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/eraas/public_html/resources/views/auth/passwords/email.blade.php ENDPATH**/ ?>