I have a sign up model in which i have name field to input name only. That name field i have declare in signup Form model rule as "required". But i want only text input of combination of capital & small letters to be allowed. There should not be any special character & even numbers in the name. What is the rule for that???
rule is:
[['full_name', 'email', 'input_password', 'input_confirm_password'], 'required']
out of this i want to apply the above one for full_name only. How to do that??