2019-02-03 17:34:15 +00:00
|
|
|
@extends('simple-layout')
|
2016-10-30 11:33:56 +00:00
|
|
|
|
2015-09-04 17:16:58 +01:00
|
|
|
@section('content')
|
2019-02-03 17:34:15 +00: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 15:46:02 +01:00
|
|
|
|
2019-04-07 11:34:40 +01:00
|
|
|
<p class="text-muted small">{{ trans('auth.reset_password_send_instructions') }}</p>
|
2015-08-23 15:46:02 +01:00
|
|
|
|
2019-08-04 14:26:39 +01:00
|
|
|
<form action="{{ url("/password/email") }}" method="POST" class="stretch-inputs">
|
2019-02-03 17:34:15 +00:00
|
|
|
{!! csrf_field() !!}
|
2015-08-23 15:46:02 +01:00
|
|
|
|
2019-02-03 17:34:15 +00:00
|
|
|
<div class="form-group">
|
|
|
|
<label for="email">{{ trans('auth.email') }}</label>
|
2019-04-07 12:00:09 +01:00
|
|
|
@include('form.text', ['name' => 'email'])
|
2019-02-03 17:34:15 +00:00
|
|
|
</div>
|
2015-08-23 15:46:02 +01:00
|
|
|
|
2019-02-03 17:34:15 +00:00
|
|
|
<div class="from-group text-right mt-m">
|
2019-08-25 12:40:04 +01:00
|
|
|
<button class="button">{{ trans('auth.reset_password_send_button') }}</button>
|
2019-02-03 17:34:15 +00:00
|
|
|
</div>
|
|
|
|
</form>
|
2015-08-23 15:46:02 +01:00
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
@stop
|