First of all you do not need
="multiple"
It works equivalently
<input type="file" name="files" multiple id="files" size="30">
To upload to multiple files, there must be an attribute when defining the formenctype="multipart/form-data"
For example, if you use helpers
@helper.form(action = routes.MyController.submit(), 'enctype -> "multipart/form-data", 'id -> "myform")
or if you are not
<form action=... enctype="multipart/form-data" id="myform">
In your controller, you want to try something like this (for Java, I'm sure it looks like Scala)
List<FilePart> plate_files = request().body().asMultipartFormData().getFiles();
FilePart myfile = request().body().asMultipartFormData().getFile("files");
Then you can use them to iterate through FilePart objects
Hope this looks like scala