I am having a form and I have an array of input fields for video urls, now when I validate form if I have multiple invalid fields with video urls, I get the same message for eac
You can using Customizing The Error Format
protected function formatErrors(Validator $validator)
{
$results = [];
$flag = false;
$messages = $validator->errors()->messages();
foreach ($messages as $key => $value) {
if (!str_contains($key, 'external_media') || !$flag) {
$results[] = $value[0];
}
if (str_contains($key, 'external_media') && !$flag) {
$flag = true;
}
}
return $results;
}