Return redirect('form')->withInput();
return redirect('form')->withInput(
$request->except('password')
);
Since you often will want to flash input to the session and then redirect to the previous page, you may easily chain input flashing onto a redirect using the withInput method.