I\'ve got a DropZone form working perfectly with one exception, I can\'t seem to limit the file types as precisely as I need to.
Using acceptedFiles: \"image/*\"<
acceptedFiles: \"image/*\"<
I think you should validate it from the controller as well.
$this->validate($request, [ 'file' => 'required|mimes:jpg,jpeg,png,bmp'] );