I tried a new implementation of JQuery library : dropzone.js
This library provides a good multi upload interface with drag and drop solution.
It seems that t
In Symfony if you have error
Error: Call to a member function move() on a non-object
Try change
$files = $request->files
To
$files = $request->files->get('file');