There is an error in form validation in JQuery. You can use the following method to view the error information of the specific input
If(!$('form').valid())
{
$($('form').validate().errorList).each(function (index, item) {
Console.log($($(item).attr('element)).attr('name') ' ' $($(item).attr('element)).attr('message') );
});
}