We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c09e122 + b173d33 commit 3259519Copy full SHA for 3259519
src/Authentication/Actions/EmailActivator.php
@@ -88,8 +88,9 @@ public function verify(IncomingRequest $request)
88
// Set the user active now
89
$authenticator->activateUser($user);
90
91
- // Get our login redirect url
92
- return redirect()->to(config('Auth')->loginRedirect());
+ // Success!
+ return redirect()->to(config('Auth')->registerRedirect())
93
+ ->with('message', lang('Auth.registerSuccess'));
94
}
95
96
/**
src/Language/en/Auth.php
@@ -29,6 +29,7 @@
29
// Registration
30
'register' => 'Register',
31
'registerDisabled' => 'Registration is not currently allowed.',
32
+ 'registerSuccess' => 'Welcome aboard!',
33
34
// Login
35
'login' => 'Login',
0 commit comments