Check if formdata that you are passing are properly populated in your javascript. You can print that in console and check.Sharing the code that works for me:var formData = new FormData($("#formId")[0]);Make sure in your form you have all your inputs set with name and value, name matching with the re...