I am using Laravel 5 Validator for validating avatars, my rules look like this:
$validator = Validator::make(
Request::all(),
[
'avatar' => 'required|image|max:1000'
]
);
I am trying to upload files and it always says "no file choosen". If I remove the required rule, then it works, even the max:1000 rule work.
multipart/form-dataso it can work properly with files? - Björn