I'm trying to validate a request from form and appear a problem, not showing error messages on the v...
It's strange but solve the problem by changing local server. I used XAMPP and now I use MAMP and eve...
i got this but this way: @if ($errors->any()) {{ $errors ? dd($errors) : null }}...
Please make sure that the form action is pertaining to the controller on which your store method is...
$this->validate($request, [ 'name' => 'required|max: 10', 'avatar' => 'required|image', 'sl...
By convention, $request->validate([]) will return the errors to the view. However you are assign...
The Laravel portal for problem solving, knowledge sharing and community building.
The community