From 3125b77b5321808a79c2551c0553b5233d3da7de Mon Sep 17 00:00:00 2001 From: Kei Date: Wed, 9 Oct 2019 03:01:29 +0700 Subject: [PATCH] Add password confirmation screen https://github.com/laravel/ui/pull/34 --- .../frontend/auth/passwords/confirm.blade.php | 51 +++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 resources/views/frontend/auth/passwords/confirm.blade.php diff --git a/resources/views/frontend/auth/passwords/confirm.blade.php b/resources/views/frontend/auth/passwords/confirm.blade.php new file mode 100644 index 000000000..362f51f71 --- /dev/null +++ b/resources/views/frontend/auth/passwords/confirm.blade.php @@ -0,0 +1,51 @@ +@extends('layouts.auth') + +@section('content') +
+
+
+
+
{{ __('Confirm Password') }}
+ +
+ {{ __('Please confirm your password before continuing.') }} + {{ __('We won\'t ask for your password again for a few hours.') }} + +
+ @csrf + +
+ + +
+ + + @error('password') + + {{ $message }} + + @enderror +
+
+ +
+
+ + + @if (Route::has('password.request')) + + {{ __('Forgot Your Password?') }} + + @endif +
+
+
+
+
+
+
+
+@endsection