3 @section('header-buttons')
4 <a href="{{ baseUrl("/login") }}">@icon('login') {{ trans('auth.log_in') }}</a>
5 @if(setting('registration-enabled'))
6 <a href="{{ baseUrl("/register") }}">@icon('new-user') {{ trans('auth.sign_up') }}</a>
13 <div class="text-center">
14 <div class="card center-box">
15 <h3>@icon('permission') {{ trans('auth.reset_password') }}</h3>
18 <p class="muted small">{{ trans('auth.reset_password_send_instructions') }}</p>
20 <form action="{{ baseUrl("/password/email") }}" method="POST">
23 <div class="form-group">
24 <label for="email">{{ trans('auth.email') }}</label>
25 @include('form/text', ['name' => 'email'])
28 <div class="from-group text-right">
29 <button class="button primary">{{ trans('auth.reset_password_send_button') }}</button>