I use the Laravel 5 validator to check 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 delete the required rule, it will work, even the max: 1000 rule.
source share