I am having trouble locating the error message of the Minimum Number Validation.. i tried overwriting it with this code
public function rules()
{
return [
[['login_name'], 'string', 'min' => 5, 'message' => 'Please input more than 5 characters.'],
];
}
but it did not change the default error message which is:
The login name must be at least five characters.
i wanna know where the default error message is..
and is there a way to overwrite this error message..
Thanks in advance.