From 13b858a99efebf7d14b6e53507ab35050ede4b8d Mon Sep 17 00:00:00 2001 From: James Brooks Date: Mon, 1 Dec 2014 08:34:37 +0000 Subject: [PATCH] Format code --- app/controllers/AuthController.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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'); } }