diff --git a/app/Providers/FortifyServiceProvider.php b/app/Providers/FortifyServiceProvider.php
index 2a8a22d18..570219cf5 100644
--- a/app/Providers/FortifyServiceProvider.php
+++ b/app/Providers/FortifyServiceProvider.php
@@ -55,6 +55,9 @@ class FortifyServiceProvider extends ServiceProvider
return $user;
}
});
+ Fortify::requestPasswordResetLinkView(function () {
+ return view('auth.forgot-password');
+ });
Fortify::createUsersUsing(CreateNewUser::class);
Fortify::updateUserProfileInformationUsing(UpdateUserProfileInformation::class);
Fortify::updateUserPasswordsUsing(UpdateUserPassword::class);
diff --git a/lang/en.json b/lang/en.json
index c3fb7e03e..3816ace19 100644
--- a/lang/en.json
+++ b/lang/en.json
@@ -4,7 +4,7 @@
"auth.register-now": "Register now!",
"auth.logout": "Logout",
"auth.register": "Register",
- "auth.registration_disabled": "Registration is disabled.",
+ "auth.registration_disabled": "Registration is disabled. Please contact the administrator.",
"auth.reset_password": "Reset Password",
"auth.failed": "These credentials do not match our records.",
"auth.failed.password": "The provided password is incorrect.",
diff --git a/resources/views/auth/forgot-password.blade.php b/resources/views/auth/forgot-password.blade.php
new file mode 100644
index 000000000..b4a63f506
--- /dev/null
+++ b/resources/views/auth/forgot-password.blade.php
@@ -0,0 +1,50 @@
+