Remember data inputted in the setup form when there are errors

This commit is contained in:
manavo
2014-11-24 16:53:57 +00:00
parent 6b5da8a8a2
commit abb20ab92d
2 changed files with 6 additions and 6 deletions

View File

@@ -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());
}
}
}