<?php $__env->startSection('contents'); ?>
<div id="contents" class="presentation">
		<div class="col-md-6 content-items">
			<div class="content-item">
					<?php if(session('status')): ?>
						<div class="alert alert-success">
							<?php echo e(session('status')); ?>

						</div>
					<?php endif; ?>

					<?php if(count($errors) > 0): ?>
						<div class="alert alert-danger">
							<strong>Whoops!</strong> There were some problems with your input.<br><br>
							<ul>
								<?php foreach($errors->all() as $error): ?>
									<li><?php echo e($error); ?></li>
								<?php endforeach; ?>
							</ul>
						</div>
					<?php endif; ?>

					<div class="well">
						<h3>PASSWORD RESET</h3>
						<form class="form-horizontal" role="form" method="POST" action="/password/email">
							<input type="hidden" name="_token" value="<?php echo e(csrf_token()); ?>">
						
							<div class="form-group">
								<label class="col-md-4 control-label">E-Mail Address</label>
								<div class="col-md-6">
									<input type="email" class="form-control" name="email" value="<?php echo e(old('email')); ?>">
								</div>
							</div>
						
							<div class="form-group">
								<div class="col-md-6 col-md-offset-4">
									<button type="submit" class="btn btn-primary">
										Send Password Reset Link
									</button>
								</div>
							</div>
						</form>
					</div>
		</div>
	</div>
</div>
<?php $__env->stopSection(); ?>

<?php echo $__env->make('masters.base', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>