I have two forms on a page - both of them are validated in controller functions using $this->validate.
I would like to display errors for each form - which I can do using if (count($errors)) per the L5.1 documentation. Is it possible to name this error bag so that I can respond to each form separately, or do I need to switch to the Validator::make and redirect->withErrors() methods in order to make that work?
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community