]> BookStack Code Mirror - bookstack/blob - resources/views/auth/passwords/reset.blade.php
Replaced use of custom 'baseUrl' helper with 'url'
[bookstack] / resources / views / auth / passwords / reset.blade.php
1 @extends('simple-layout')
2
3 @section('content')
4
5     <div class="container very-small mt-xl">
6         <div class="card content-wrap auto-height">
7             <h1 class="list-heading">{{ trans('auth.reset_password') }}</h1>
8
9             <form action="{{ url("/password/reset") }}" method="POST" class="stretch-inputs">
10                 {!! csrf_field() !!}
11                 <input type="hidden" name="token" value="{{ $token }}">
12
13                 <div class="form-group">
14                     <label for="email">{{ trans('auth.email') }}</label>
15                     @include('form.text', ['name' => 'email'])
16                 </div>
17
18                 <div class="form-group">
19                     <label for="password">{{ trans('auth.password') }}</label>
20                     @include('form.password', ['name' => 'password'])
21                 </div>
22
23                 <div class="form-group">
24                     <label for="password_confirmation">{{ trans('auth.password_confirm') }}</label>
25                     @include('form.password', ['name' => 'password_confirmation'])
26                 </div>
27
28                 <div class="from-group text-right mt-m">
29                     <button class="button primary">{{ trans('auth.reset_password') }}</button>
30                 </div>
31             </form>
32
33         </div>
34     </div>
35
36 @stop