2019-02-03 12:34:15 -05:00
|
|
|
@extends('simple-layout')
|
2016-10-30 07:33:56 -04:00
|
|
|
|
2015-09-04 12:16:58 -04:00
|
|
|
@section('content')
|
2019-02-03 12:34:15 -05:00
|
|
|
<div class="container very-small mt-xl">
|
|
|
|
<div class="card content-wrap auto-height">
|
|
|
|
<h1 class="list-heading">{{ trans('auth.reset_password') }}</h1>
|
2015-08-23 10:46:02 -04:00
|
|
|
|
2019-04-07 06:34:40 -04:00
|
|
|
<p class="text-muted small">{{ trans('auth.reset_password_send_instructions') }}</p>
|
2015-08-23 10:46:02 -04:00
|
|
|
|
2019-02-03 12:34:15 -05:00
|
|
|
<form action="{{ baseUrl("/password/email") }}" method="POST" class="stretch-inputs">
|
|
|
|
{!! csrf_field() !!}
|
2015-08-23 10:46:02 -04:00
|
|
|
|
2019-02-03 12:34:15 -05:00
|
|
|
<div class="form-group">
|
|
|
|
<label for="email">{{ trans('auth.email') }}</label>
|
2019-04-07 07:00:09 -04:00
|
|
|
@include('form.text', ['name' => 'email'])
|
2019-02-03 12:34:15 -05:00
|
|
|
</div>
|
2015-08-23 10:46:02 -04:00
|
|
|
|
2019-02-03 12:34:15 -05:00
|
|
|
<div class="from-group text-right mt-m">
|
|
|
|
<button class="button primary">{{ trans('auth.reset_password_send_button') }}</button>
|
|
|
|
</div>
|
|
|
|
</form>
|
2015-08-23 10:46:02 -04:00
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
@stop
|