Hi.
I have a controller with this:
$validator = Validator::make(Input::all(), $rules);
if ($validator->fails()) {
return Redirect::back()->withInput()->withErrors($validator);
}
When SessionMiddleware is "active", Old Input and Errors don't work. Look as they are "lost".
How to resolve this?
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community