Laravel validation for multiple forms on the same page

Display validation error for multiple forms on the same page

Balaji Dharma
Dev Genius
Published in
3 min readMay 8, 2022

--

Photo by Max Chen on Unsplash

I have to implement two forms on the same page for profile updates on the Laravel Basic Admin panel.

One form for basic info and another for password updates. For validation, used $request->validate() a method in the controller

--

--