File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -26,27 +26,27 @@ public function boot()
2626
2727 if (class_exists (Fortify::class)) {
2828 Fortify::loginView (function () {
29- view ('auth.login ' );
29+ return view ('auth.login ' );
3030 });
3131
3232 Fortify::registerView (function () {
33- view ('auth.register ' );
33+ return view ('auth.register ' );
3434 });
3535
3636 Fortify::confirmPasswordView (function () {
37- view ('auth.passwords.confirm ' );
37+ return view ('auth.passwords.confirm ' );
3838 });
3939
4040 Fortify::requestPasswordResetLinkView (function () {
41- view ('auth.passwords.email ' );
41+ return view ('auth.passwords.email ' );
4242 });
4343
4444 Fortify::resetPasswordView (function (Request $ request ) {
45- view ('auth.passwords.reset ' );
45+ return view ('auth.passwords.reset ' );
4646 });
4747
4848 Fortify::verifyEmailView (function () {
49- view ('auth.verify ' );
49+ return view ('auth.verify ' );
5050 });
5151 }
5252 }
You can’t perform that action at this time.
0 commit comments