Overriding the postRegister function, as you mentioned, should work, you will do this in your AuthController :
public function postRegister(Request $request) { $validator = $this->registrar->validator($request->all()); if ($validator->fails()) { $this->throwValidationException( $request, $validator ); } $this->auth->login($this->registrar->create($request->all()));
Or something like that. Copy it from the AuthenticatesAndRegistersUsers , which is used at the top of your AuthController , here you will find all the functions
To do this, your AuthController should use the "AuthenticatesAndRegistersUsers" property, which is by default.
Additional redirection information in case you want to redirect to a named route: http://laravel.com/docs/5.0/responses#redirects
source share