validate.js
validate.js copied to clipboard
Can't validate field containing accents with rule alpha
I suggest you replace alpha regex by this one /^[a-z\u00C0-\u017F]+$/i to validate fields containing accents or just add a new rule like 'alpha_accents'
Pull request would be much appreciated.