Product create - Test I was able to create a category, however when creating a product i tested it out using postman and got error: \"\", then i added the code which requires al
your problem is on setting content type in postman. you send form-data to the server but your server not decoded it. by default, your server gets x-www-form-urlencoded and if you set postman on x-www-form-urlencoded your problem is gone.
you must use form-data for upload file