0👍
SOLVED!
Problems with multiple dropzone instances
This code was the key.
$(document).ready(function () {
Dropzone.autoDiscover = false;
$(".dropzone").each(function () {
new Dropzone($(this).get(0), {url: "...."});
});
});
Source:stackexchange.com