Direkt input'a file vererek ve name değerini "value[]" şeklinde ayarlayarak upload edebilirsin.
$('#add').click(function () {
var formData = new FormData();
var totalfiles = $('#images').files.length;
for (var index = 0; index < totalfiles; index++) {
formData.append("images[]", $('#images').files[index]);
}
formData.append("add", "add");
$.ajax({
url: 'url',
type: 'post',
data: formData,
dataType: 'json',
contentType: false,
processData: false,
success: function (data) {
console.log('success')
},
error: function (data) {
console.log('error')
},
});
});
İyi çalışmalar.