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
This commit was created on GitHub.com and signed with GitHub’s verified signature.
The key has expired.
Changelog
CHANGED: When handling invalid form submissions we were previously flashing the errors and redirecting to the form page (based on the resource route naming convention). This had to change because Turbo expects only successful responses to redirect, while invalid responses should return a 422 status code with the form containing the invalid messages. #36 Thanks to @bakerkretzmar@taylorotwell@tobyzerner for the help there.
CHANGED: The TurboMiddleware is now automatically prepended to the web route group. If you were already using it, either move it to the top of the group stack or remove it entirely from your HTTP Kernel.