Last change
on this file was dfae77e, checked in by Igor Danilovski <igor_danilovski@…>, 2 years ago |
|
-
Property mode
set to
100644
|
File size:
3.4 KB
|
Rev | Line | |
---|
[dfae77e] | 1 | @extends('layouts.app')
|
---|
| 2 |
|
---|
| 3 | @section('content')
|
---|
| 4 | <div class="container">
|
---|
| 5 | <div class="row justify-content-center">
|
---|
| 6 | <div class="col-md-8">
|
---|
| 7 | <div class="card">
|
---|
| 8 | <div class="card-header">{{ __('Reset Password') }}</div>
|
---|
| 9 |
|
---|
| 10 | <div class="card-body">
|
---|
| 11 | <form method="POST" action="{{ route('password.update') }}">
|
---|
| 12 | @csrf
|
---|
| 13 |
|
---|
| 14 | <input type="hidden" name="token" value="{{ $token }}">
|
---|
| 15 |
|
---|
| 16 | <div class="row mb-3">
|
---|
| 17 | <label for="email"
|
---|
| 18 | class="col-md-4 col-form-label text-md-end">{{ __('Email Address') }}</label>
|
---|
| 19 |
|
---|
| 20 | <div class="col-md-6">
|
---|
| 21 | <input id="email" type="email"
|
---|
| 22 | class="form-control @error('email') is-invalid @enderror" name="email"
|
---|
| 23 | value="{{ $email ?? old('email') }}" required autocomplete="email" autofocus>
|
---|
| 24 |
|
---|
| 25 | @error('email')
|
---|
| 26 | <span class="invalid-feedback" role="alert">
|
---|
| 27 | <strong>{{ $message }}</strong>
|
---|
| 28 | </span>
|
---|
| 29 | @enderror
|
---|
| 30 | </div>
|
---|
| 31 | </div>
|
---|
| 32 |
|
---|
| 33 | <div class="row mb-3">
|
---|
| 34 | <label for="password"
|
---|
| 35 | class="col-md-4 col-form-label text-md-end">{{ __('Password') }}</label>
|
---|
| 36 |
|
---|
| 37 | <div class="col-md-6">
|
---|
| 38 | <input id="password" type="password"
|
---|
| 39 | class="form-control @error('password') is-invalid @enderror" name="password"
|
---|
| 40 | required autocomplete="new-password">
|
---|
| 41 |
|
---|
| 42 | @error('password')
|
---|
| 43 | <span class="invalid-feedback" role="alert">
|
---|
| 44 | <strong>{{ $message }}</strong>
|
---|
| 45 | </span>
|
---|
| 46 | @enderror
|
---|
| 47 | </div>
|
---|
| 48 | </div>
|
---|
| 49 |
|
---|
| 50 | <div class="row mb-3">
|
---|
| 51 | <label for="password-confirm"
|
---|
| 52 | class="col-md-4 col-form-label text-md-end">{{ __('Confirm Password') }}</label>
|
---|
| 53 |
|
---|
| 54 | <div class="col-md-6">
|
---|
| 55 | <input id="password-confirm" type="password" class="form-control"
|
---|
| 56 | name="password_confirmation" required autocomplete="new-password">
|
---|
| 57 | </div>
|
---|
| 58 | </div>
|
---|
| 59 |
|
---|
| 60 | <div class="row mb-0">
|
---|
| 61 | <div class="col-md-6 offset-md-4">
|
---|
| 62 | <button type="submit" class="btn btn-primary">
|
---|
| 63 | {{ __('Reset Password') }}
|
---|
| 64 | </button>
|
---|
| 65 | </div>
|
---|
| 66 | </div>
|
---|
| 67 | </form>
|
---|
| 68 | </div>
|
---|
| 69 | </div>
|
---|
| 70 | </div>
|
---|
| 71 | </div>
|
---|
| 72 | </div>
|
---|
| 73 | @endsection
|
---|
Note:
See
TracBrowser
for help on using the repository browser.