From 191fd358191b7ec814758c3c86994ce1a6059032 Mon Sep 17 00:00:00 2001 From: zacksmash Date: Sun, 27 Sep 2020 21:28:52 -0600 Subject: [PATCH] Update template name to match defaults --- app/Providers/FortifyUIServiceProvider.php | 4 ++-- ...{password-confirm.blade.php => confirm-password.blade.php} | 0 .../views/auth/{verify.blade.php => verify-email.blade.php} | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename resources/views/auth/{password-confirm.blade.php => confirm-password.blade.php} (100%) rename resources/views/auth/{verify.blade.php => verify-email.blade.php} (100%) diff --git a/app/Providers/FortifyUIServiceProvider.php b/app/Providers/FortifyUIServiceProvider.php index d7f29d2..c62feaf 100644 --- a/app/Providers/FortifyUIServiceProvider.php +++ b/app/Providers/FortifyUIServiceProvider.php @@ -41,11 +41,11 @@ public function boot() }); // Fortify::verifyEmailView(function () { - // return view('auth.verify'); + // return view('auth.verify-email'); // }); // Fortify::confirmPasswordView(function () { - // return view('auth.password-confirm'); + // return view('auth.confirm-password'); // }); } } diff --git a/resources/views/auth/password-confirm.blade.php b/resources/views/auth/confirm-password.blade.php similarity index 100% rename from resources/views/auth/password-confirm.blade.php rename to resources/views/auth/confirm-password.blade.php diff --git a/resources/views/auth/verify.blade.php b/resources/views/auth/verify-email.blade.php similarity index 100% rename from resources/views/auth/verify.blade.php rename to resources/views/auth/verify-email.blade.php