You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, when we flash validation error messages via session.flashValidationErrors, we also flash all the input data.
Flashing input data is fine for traditional full-page reloads where the page state is not maintained. However, for Inertia applications, flashing input data is of no use, since this information is not even shared with the templates in the first place.
The error handler can be smart about Inertia applications and should not flash input data.