Input Field: how can i customize the error message in pattern which is used in input field in html 5.
currently message show "Please enter a value matching the pattern" this massage show after customize "Only Numeric Number Allowed"
<?= $this->Form->input('mobile',
['pattern'=>"^(?!0)[0-9]{10}$",
'label' => false, 'id' => '',
'class' => 'form-control reg_mobile_input',
'required' => true,'id'=>'',
'placeholder'=>'without initail zero',]);
?>