0π
β
To solve the issue I had to pass a formData, and use the property name="" in all my inputs.
before send the request by Axios I added the following code:
const form = document.getElementById('form');
const formdata = new FormData(form);
Source:stackexchange.com