Lae/resources/views/auth/passwords/confirm.blade.php

35 lines
1.3 KiB
PHP
Raw Permalink Normal View History

2023-02-01 18:58:44 +00:00
@extends('layouts.app')
@section('content')
2023-02-28 12:15:20 +00:00
<div class="d-flex justify-content-center align-items-center h-screen" style="height:60vh">
2023-02-28 11:45:58 +00:00
<div class="text-center">
<span style="font-size: 10rem">
<i class="bi bi-key"></i>
2023-02-19 16:56:47 +00:00
</span>
2023-02-28 11:45:58 +00:00
<h2>{{ __('Confirm Password') }}</h2>
{{ __('Please confirm your password before continuing.') }}
<form method="POST" action="{{ route('password.confirm') }}">
@csrf
<div class="form-group mt-2">
<input id="password" type="password"
class="form-control text-center @error('password') is-invalid @enderror" name="password"
value="{{ old('password') }}" required autofocus placeholder="密码" aria-label="密码">
@error('password')
<span class="invalid-feedback" role="alert">
<strong>{{ $message }}</strong>
</span>
@enderror
</div>
<button class="btn btn-primary btn-block mt-3" type="submit">
{{ __('Confirm Password') }}
</button>
</form>
2023-02-01 18:58:44 +00:00
</div>
2023-02-28 11:45:58 +00:00
</div>
2023-02-19 16:56:47 +00:00
2023-02-01 18:58:44 +00:00
@endsection