You're using req.budy — typo alert! It should be req.body.
req.budy
req.body
exports.postDeleteProduct = (req, res, next) => { console.log("Form Here", req.body); const prodId = req.body.productId; Product.deleteById(prodId); res.redirect('/'); };