2016-01-09 14:23:35 -05:00
|
|
|
<div class="form-group">
|
2016-11-13 11:34:28 -05:00
|
|
|
<label for="email">{{ trans('auth.email') }}</label>
|
2019-02-03 12:34:15 -05:00
|
|
|
@include('form.text', ['name' => 'email', 'tabindex' => 1])
|
2016-01-09 14:23:35 -05:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="form-group">
|
2016-11-13 11:34:28 -05:00
|
|
|
<label for="password">{{ trans('auth.password') }}</label>
|
2019-03-16 12:00:41 -04:00
|
|
|
@include('form.password', ['name' => 'password', 'tabindex' => 1])
|
2019-04-16 07:18:51 -04:00
|
|
|
<span class="block small mt-s">
|
|
|
|
<a href="{{ baseUrl('/password/email') }}">{{ trans('auth.forgot_password') }}</a>
|
|
|
|
</span>
|
|
|
|
</div>
|