MINI Sh3ll
<?php $__env->startSection('title', 'Reset Password'); ?>
<?php $__env->startSection('content'); ?>
<!-- begin:: Page -->
<!-- Start login -->
<div class="m-login__signin">
<div class="m-login__head">
<h3 class="m-login__title">
Reset Password
</h3>
</div>
<?php if(session('status')): ?>
<div class="alert alert-success" role="alert">
<?php echo e(session('status')); ?>
</div>
<?php endif; ?>
<form class="m-login__form m-form" id="forgotPassword"
action="<?php echo e(route('password.email')); ?>" method="POST" data-parsley-validate="">
<?php echo csrf_field(); ?>
<div class="form-group m-form__group">
<label for="email">
Email address
</label>
<input class="form-control<?php echo e($errors->has('email') ? ' is-invalid' : ''); ?> m-input"
type="email" name="email" autocomplete="off"
value="<?php echo e(old('email')); ?>"
placeholder = '[email protected]',
data-parsley-required-message = 'Email address is required',
data-parsley-trigger = 'change focusout'
data-parsley-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 class="row m-login__form-sub">
<div class="col m--align-left">
<a href="<?php echo e(url('/login')); ?>" id="m_login_forget_password" class="m-link">
Back to Login
</a>
</div>
</div>
<div class="m-login__form-action">
<button type="submit" class="btn btn-focus m-btn m-btn--pill m-btn--custom m-btn--air">
<?php echo e(__('Send Password Reset Link')); ?>
</button>
</div>
</form>
</div>
<div class="m-stack__item m-stack__item--center">
<div class="m-login__account">
<span class="m-login__account-msg">
Don't have an account yet ?
</span>
<a href="<?php echo e(route('register')); ?>" id="m_login_signup" class="m-link m-link--focus m-login__account-link">
Sign Up
</a>
</div>
</div>
<!-- End login -->
<?php $__env->stopSection(); ?>
<?php $__env->startSection('js'); ?>
<script>
$(document).ready(function() {
$('#forgotPassword').parsley();
});
</script>
<?php $__env->stopSection(); ?>
<?php echo $__env->make('auth.master', \Illuminate\Support\Arr::except(get_defined_vars(), array('__data', '__path')))->render(); ?>
OHA YOOOO