I'm working with Laravel.
Is there a way to save old input for a form, without submitting it, so that when we redirect back, we don't lose the old input, and we continue from where we left?
I know about the withInput function in laravel , but in order for it to work, you should submit, and I don't wanna submit.
I was thinking maybe I could save inputs in session, but I don't know how or even if it's a good idea.