I was creating a new Laravel project and when debugging the errors of a form request, I noticed that my ErrorBag was always empty. Even when in the controller $validat
$validat
Are you triggering any form validation errors? If you are then try this -
$messages = $validator->errors();
The messages variable should now have your errors
If you error bag is still empty