Customize Error Message

What seems to be the problem:
I’m beginner developer.
maybe my english skill

My question is how can i Customize Error Message with array .
i don’t know how to explain but i have a picture to show you guy .

Are you using the latest version of Livewire:

yes

Do you have any screenshots or code examples:

In your messages definition, I think the key needs to also have the rule it is validating against.
Eg: form.type.required.

Hey, @faerieian

As @alex Said you can customize the error message by defining the type of validation. For example if you want to customize the error in require validation you can do the following:

public function messages()
{
   return [
      'form.type.required' => __('The type is required field'),
   ];
}