I have a Sign Up form, that will take User's national Id card number as input. In my country, National ID card number can be 10,13 or 17 digit. How can I validate this type of validation??? My validation code is following:
'user_nid' => 'digits_between:10,17|required|numeric|unique:users'
but, it is not proper way cause it take all the values between 10 to 17. It doesn't full fill the main requirement???
Now what can I do???
You can try to use regex rule:
Alternatively you could create custom validation rule.