0

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.

ii--L--ii
  • 207
  • 1
  • 7
  • 23

1 Answers1

4

Try:

public function rules()
{
    return [
        [['login_name'], 'string', 'min' => 5, 'tooShort' => 'Please input more than 5 characters.'],
    ];
}

For more details refer to this link.

arogachev
  • 33,150
  • 7
  • 114
  • 117
Chinmay Waghmare
  • 5,368
  • 2
  • 43
  • 68