| 
									
										
										
										
											2016-11-06 16:17:22 +01:00
										 |  |  | {% extends "./layout/guest" %}
 | 
					
						
							| 
									
										
										
										
											2015-05-02 13:20:49 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | {% block content %}
 | 
					
						
							| 
									
										
										
										
											2015-06-21 11:59:35 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     {% if session.status %}
 | 
					
						
							|  |  |  |         <div class="alert alert-success">
 | 
					
						
							|  |  |  |             {{ session.status }}
 | 
					
						
							|  |  |  |         </div>
 | 
					
						
							|  |  |  |     {% endif %}
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     {% if errors|length > 0 %}
 | 
					
						
							|  |  |  |         <div class="alert alert-danger">
 | 
					
						
							| 
									
										
										
										
											2018-01-02 17:25:59 +01:00
										 |  |  |             <strong>{{ 'flash_error'|_ }}</strong> {{ 'problems_with_input'|_ }}<br><br>
 | 
					
						
							| 
									
										
										
										
											2015-06-21 11:59:35 +02:00
										 |  |  |             <ul>
 | 
					
						
							|  |  |  |                 {% for error in errors.all %}
 | 
					
						
							|  |  |  |                     <li>{{ error }}</li>
 | 
					
						
							|  |  |  |                 {% endfor %}
 | 
					
						
							|  |  |  |             </ul>
 | 
					
						
							|  |  |  |         </div>
 | 
					
						
							|  |  |  |     {% endif %}
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-19 18:32:09 +01:00
										 |  |  |     <div class="login-box-body">
 | 
					
						
							|  |  |  |         {% if session('status') %}
 | 
					
						
							|  |  |  |             <p class="login-box-msg text-success">
 | 
					
						
							|  |  |  |                 {{ session('status') }}
 | 
					
						
							|  |  |  |             </p>
 | 
					
						
							|  |  |  |         {% else %}
 | 
					
						
							| 
									
										
										
										
											2018-01-02 17:25:59 +01:00
										 |  |  |             <p class="login-box-msg">{{ 'reset_password'|_ }}</p>
 | 
					
						
							| 
									
										
										
										
											2016-01-19 18:32:09 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |             <form role="form" method="POST" action="{{ URL.to('/password/email') }}">
 | 
					
						
							|  |  |  |                 <input type="hidden" name="_token" value="{{ csrf_token() }}"/>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 <div class="form-group has-feedback">
 | 
					
						
							| 
									
										
										
										
											2018-01-02 17:25:59 +01:00
										 |  |  |                     <input type="email" class="form-control" name="email" placeholder="{{ trans('form.email') }}"/>
 | 
					
						
							| 
									
										
										
										
											2016-01-19 18:32:09 +01:00
										 |  |  |                 </div>
 | 
					
						
							| 
									
										
										
										
											2015-06-21 11:59:35 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-19 18:32:09 +01:00
										 |  |  |                 <div class="row">
 | 
					
						
							|  |  |  |                     <div class="col-xs-12">
 | 
					
						
							| 
									
										
										
										
											2018-01-02 17:25:59 +01:00
										 |  |  |                         <button type="submit" class="btn btn-primary btn-flat pull-right">{{ 'reset_button'|_ }}</button>
 | 
					
						
							| 
									
										
										
										
											2016-01-19 18:32:09 +01:00
										 |  |  |                     </div>
 | 
					
						
							| 
									
										
										
										
											2015-05-02 13:20:49 +02:00
										 |  |  |                 </div>
 | 
					
						
							| 
									
										
										
										
											2015-06-21 11:59:35 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-19 18:32:09 +01:00
										 |  |  |             </form>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         {% endif %}
 | 
					
						
							| 
									
										
										
										
											2018-01-02 17:25:59 +01:00
										 |  |  |         <a href="{{ URL.to('/login') }}">{{ 'want_to_login'|_ }}</a><br>
 | 
					
						
							|  |  |  |         {% if allowRegistration %}
 | 
					
						
							|  |  |  |             <a href="{{ route('register') }}" class="text-center">{{ 'register_new_account'|_ }}</a><br>
 | 
					
						
							| 
									
										
										
										
											2016-03-29 11:54:26 +02:00
										 |  |  |         {% endif %}
 | 
					
						
							| 
									
										
										
										
											2015-06-21 11:59:35 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-12 18:42:48 +01:00
										 |  |  |     </div>
 | 
					
						
							| 
									
										
										
										
											2015-06-21 11:59:35 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-05 12:51:57 +02:00
										 |  |  | {% endblock %}
 |