Array Validation and Error Reporting

What seems to be the problem:
Trying out instant validation which works fine but for array inputs. I am wondering how best I could get around this and report the error to the user as input changes.
Steps to Reproduce:

Are you using the latest version of Livewire:
Yes

Do you have any screenshots or code examples:
Blade Form

Validation Rules
‘contact_name’ => ‘required|array|min:1’,
‘contact_name.*’ => ‘required|string|min:3’,

try
@error(‘contact_name.{{$index}}’) {{ $message }} @enderror