blob: b31f9918a59fdc5e2065fab410d4412be80af6ad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
@extends('template')
@section('body')
<main>
<div class="form-container">
<h1 style="font-size: 1.5rem; margin-bottom: 1.5rem;">Confirm Password</h1>
<div class="form-helper" style="margin-bottom: 1.5rem;">
{{ __('This is a secure area of the application. Please confirm your password before continuing.') }}
</div>
<form method="POST" action="{{ route('password.confirm') }}">
@csrf
<div class="form-group">
<label for="password" class="form-label">Password</label>
<input type="password"
id="password"
name="password"
class="form-input @error('password') form-input-error @enderror"
required
autocomplete="current-password">
@error('password')
<div class="form-error">{{ $message }}</div>
@enderror
</div>
<div class="form-group" style="display: flex; justify-content: flex-end;">
<button type="submit" class="form-button form-button-primary">
Confirm
</button>
</div>
</form>
</div>
</main>
@endsection
|