The problem might be, that you are validating the model and not the request. I guess you are using the model file attachment relationship. That means that you first have to make the model, attach the uploaded file and then validate.
If you want to validate the uploaded file during the request, either create your own validator (Validator::make()) or use the Request::validate() method described here: File Uploads - October CMS - 3.x