Sentryを使ったLaravelのController、私は以下のように書いている。 public function doLogin() { $inputs = array( 'email' => Input::get('email'), 'password' => Input::get('password'), ); try { Sentry::authenticate($inputs, false); $cookie = Cookie::forever('email', $inputs['email']); return Redirect::intended(Input::get('uri'))->withCookie($cookie); } catch (Cartalyst\Sentry\Users\LoginRequiredException $e) { $err_msg = $