2015-08-23 10:46:02 -04:00
|
|
|
@extends('public')
|
|
|
|
|
2015-09-04 12:16:58 -04:00
|
|
|
@section('content')
|
2015-08-23 10:46:02 -04:00
|
|
|
|
|
|
|
|
|
|
|
<div class="text-center">
|
|
|
|
<div class="center-box text-left">
|
|
|
|
<h1>Reset Password</h1>
|
|
|
|
|
|
|
|
<p class="muted small">Enter your email below and you will be sent an email with a password reset link.</p>
|
|
|
|
|
2016-08-14 07:29:35 -04:00
|
|
|
<form action="{{ baseUrl("/password/email") }}" method="POST">
|
2015-08-23 10:46:02 -04:00
|
|
|
{!! csrf_field() !!}
|
|
|
|
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="email">Email</label>
|
|
|
|
@include('form/text', ['name' => 'email'])
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="from-group">
|
|
|
|
<button class="button block pos">Send Reset Link</button>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
@stop
|