I am using Sentry and 'catch' to catch errors:
catch (UserExistsException $e)
{
return Redirect::back()->withInput()->with('error',$e->getMessage());
}
My redirect does not work though, it goes to the Laravel error screen with the right error message error "Cartalyst \ Sentry \ Users \ UserExistsException A user already exists with login [email@email.com], logins must be unique for users." with REDIRECT_STATUS 200.
Any ideas what I am doing wrong?