Last change
on this file since dfae77e was dfae77e, checked in by Igor Danilovski <igor_danilovski@…>, 2 years ago |
|
-
Property mode
set to
100644
|
File size:
2.3 KB
|
Line | |
---|
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">{{ __('Confirm Password') }}</div>
|
---|
9 |
|
---|
10 | <div class="card-body">
|
---|
11 | {{ __('Please confirm your password before continuing.') }}
|
---|
12 |
|
---|
13 | <form method="POST" action="{{ route('password.confirm') }}">
|
---|
14 | @csrf
|
---|
15 |
|
---|
16 | <div class="row mb-3">
|
---|
17 | <label for="password"
|
---|
18 | class="col-md-4 col-form-label text-md-end">{{ __('Password') }}</label>
|
---|
19 |
|
---|
20 | <div class="col-md-6">
|
---|
21 | <input id="password" type="password"
|
---|
22 | class="form-control @error('password') is-invalid @enderror" name="password"
|
---|
23 | required autocomplete="current-password">
|
---|
24 |
|
---|
25 | @error('password')
|
---|
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-0">
|
---|
34 | <div class="col-md-8 offset-md-4">
|
---|
35 | <button type="submit" class="btn btn-primary">
|
---|
36 | {{ __('Confirm Password') }}
|
---|
37 | </button>
|
---|
38 |
|
---|
39 | @if (Route::has('password.request'))
|
---|
40 | <a class="btn btn-link" href="{{ route('password.request') }}">
|
---|
41 | {{ __('Forgot Your Password?') }}
|
---|
42 | </a>
|
---|
43 | @endif
|
---|
44 | </div>
|
---|
45 | </div>
|
---|
46 | </form>
|
---|
47 | </div>
|
---|
48 | </div>
|
---|
49 | </div>
|
---|
50 | </div>
|
---|
51 | </div>
|
---|
52 | @endsection
|
---|
Note:
See
TracBrowser
for help on using the repository browser.