Thanks a lot for this extension.
I need help with using the validation rules: I have a field called "State of residence" which the user has to enter one of the 37 states in Nigeria. So I have listed out all the states in a validation rule like so (without the quotes): "in:Abia,Adamawa,Akwa Ibom,Anambra,Bauchi,Bayelsa,Benue,Borno,Cross River,Delta,Ebonyi,Edo,Ekiti,Enugu,Gombe,Imo,Jigawa,Kaduna,Kano,Katsina,Kebbi,Kogi,Kwara,Lagos,Nasarawa,Niger,Ogun,Ondo,Osun,Oyo,Plateau,Rivers,Sokoto,Taraba,Yobe,Zamfara,FCT" as described in https://laravel.com/docs/5.2/validation#rule-in
However, I get an HTTP 500 error. Here are the first few lines of the stack trace:
BadMethodCallException: Method [validateAdamawa] does not exist. in /var/www/html/vendor/illuminate/validation/Validator.php:2694
Stack trace:
#0 /var/www/html/vendor/illuminate/validation/Validator.php(363): Illuminate\Validation\Validator->__call('validateAdamawa', Array)
#1 /var/www/html/vendor/illuminate/validation/Validator.php(315): Illuminate\Validation\Validator->validate('State of Reside...', 'Adamawa')
#2 /var/www/html/vendor/illuminate/validation/Validator.php(336): Illuminate\Validation\Validator->passes()
#3 /var/www/html/vendor/flarum/core/src/Core/Validator/AbstractValidator.php(63): Illuminate\Validation\Validator->fails()
So it appears that I am not entering the validation rule properly. Can you help me out?