After upgrading Laravel 5.7 to 5.8 my Validation Error message doesnt seems to work after redirect
$validator = Model::validate($request);
if ($validator->fails()) {
throw ValidationException::withMessages($validator->messages()->toArray());
}
I try do dd($request->all());
It does send the array field that I required
and I was not sure what the real problem cause laravel community doesnt seems to have problem with this after searching throughout article