Laravel Validation: Validating Input as Equal to a specific value or PHP Variable
TL; DR; As of version 10, Laravel does not have a built-in way to validate that a field is equal to a specific value. However, you can easily create a custom rule to accomplish this. Create scaffolding for the rule with artisan: php artisan make:rule...

