File tree 1 file changed +6
-6
lines changed
1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -26,27 +26,27 @@ public function boot()
26
26
27
27
if (class_exists (Fortify::class)) {
28
28
Fortify::loginView (function () {
29
- view ('auth.login ' );
29
+ return view ('auth.login ' );
30
30
});
31
31
32
32
Fortify::registerView (function () {
33
- view ('auth.register ' );
33
+ return view ('auth.register ' );
34
34
});
35
35
36
36
Fortify::confirmPasswordView (function () {
37
- view ('auth.passwords.confirm ' );
37
+ return view ('auth.passwords.confirm ' );
38
38
});
39
39
40
40
Fortify::requestPasswordResetLinkView (function () {
41
- view ('auth.passwords.email ' );
41
+ return view ('auth.passwords.email ' );
42
42
});
43
43
44
44
Fortify::resetPasswordView (function (Request $ request ) {
45
- view ('auth.passwords.reset ' );
45
+ return view ('auth.passwords.reset ' );
46
46
});
47
47
48
48
Fortify::verifyEmailView (function () {
49
- view ('auth.verify ' );
49
+ return view ('auth.verify ' );
50
50
});
51
51
}
52
52
}
You can’t perform that action at this time.
0 commit comments