diff --git a/app/controllers/AuthController.php b/app/controllers/AuthController.php index da2e3250..cff51122 100644 --- a/app/controllers/AuthController.php +++ b/app/controllers/AuthController.php @@ -12,7 +12,9 @@ class AuthController extends Controller { if (Auth::attempt(Input::only(['email', 'password']))) { return Redirect::intended('dashboard'); } else { - return Redirect::back()->withInput(Input::except('password'))->with('error', 'Invalid email or password'); + return Redirect::back() + ->withInput(Input::except('password')) + ->with('error', 'Invalid email or password'); } }