diff --git a/src/Auth/bootstrap-stubs/auth/passwords/confirm.stub b/src/Auth/bootstrap-stubs/auth/passwords/confirm.stub new file mode 100644 index 0000000..f144e71 --- /dev/null +++ b/src/Auth/bootstrap-stubs/auth/passwords/confirm.stub @@ -0,0 +1,50 @@ +@extends('layouts.app') + +@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