Laravel Redirect::withInput()

Viewed 16523

As the title says - I'm trying to redirect back to previous page, with input data, like this:

return Redirect::back()->withInput();

It works as intended for regular input, but not for files! Is there a workaround for this? So that after the redirect, the previous file is selected again.

5 Answers
Related