2015-08-23 15:46:02 +01:00
|
|
|
@extends('public')
|
|
|
|
|
2016-10-30 11:33:56 +00:00
|
|
|
@section('header-buttons')
|
2018-02-17 13:30:52 +00:00
|
|
|
<a href="{{ baseUrl("/login") }}">@icon('login') {{ trans('auth.log_in') }}</a>
|
2016-10-30 11:33:56 +00:00
|
|
|
@if(setting('registration-enabled'))
|
2018-02-17 13:30:52 +00:00
|
|
|
<a href="{{ baseUrl("/register") }}">@icon('new-user') {{ trans('auth.sign_up') }}</a>
|
2016-10-30 11:33:56 +00:00
|
|
|
@endif
|
|
|
|
@stop
|
|
|
|
|
2015-09-04 17:16:58 +01:00
|
|
|
@section('content')
|
2015-08-23 15:46:02 +01:00
|
|
|
|
|
|
|
|
|
|
|
<div class="text-center">
|
|
|
|
<div class="center-box text-left">
|
2016-11-13 16:34:28 +00:00
|
|
|
<h1>{{ trans('auth.reset_password') }}</h1>
|
2015-08-23 15:46:02 +01:00
|
|
|
|
2016-11-13 16:34:28 +00:00
|
|
|
<p class="muted small">{{ trans('auth.reset_password_send_instructions') }}</p>
|
2015-08-23 15:46:02 +01:00
|
|
|
|
2016-08-14 12:29:35 +01:00
|
|
|
<form action="{{ baseUrl("/password/email") }}" method="POST">
|
2015-08-23 15:46:02 +01:00
|
|
|
{!! csrf_field() !!}
|
|
|
|
|
|
|
|
<div class="form-group">
|
2016-11-13 16:34:28 +00:00
|
|
|
<label for="email">{{ trans('auth.email') }}</label>
|
2015-08-23 15:46:02 +01:00
|
|
|
@include('form/text', ['name' => 'email'])
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="from-group">
|
2016-11-13 16:34:28 +00:00
|
|
|
<button class="button block pos">{{ trans('auth.reset_password_send_button') }}</button>
|
2015-08-23 15:46:02 +01:00
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
@stop
|