diff --git a/app/controllers/SetupController.php b/app/controllers/SetupController.php index 2dfd761f..62a85ee3 100644 --- a/app/controllers/SetupController.php +++ b/app/controllers/SetupController.php @@ -42,7 +42,7 @@ return Redirect::to('/'); } else { // No good, let's try that again. - return Redirect::back()->with('errors', $v->messages()); + return Redirect::back()->withInput()->with('errors', $v->messages()); } } } diff --git a/app/views/setup.blade.php b/app/views/setup.blade.php index 58d96988..e1e3b3e4 100644 --- a/app/views/setup.blade.php +++ b/app/views/setup.blade.php @@ -15,14 +15,14 @@

Status Page Details

- + @if($errors->has('app_name')) {{ $errors->first('app_name') }} @endif
- + @if($errors->has('app_domain')) {{ $errors->first('app_domain') }} @endif @@ -37,21 +37,21 @@

Administrator Account

- + @if($errors->has('user.name')) {{ $errors->first('user.name') }} @endif
- + @if($errors->has('user.email')) {{ $errors->first('user.email') }} @endif
- + @if($errors->has('user.password')) {{ $errors->first('user.password') }} @endif