In index.html.erb I display all products, and next to each product I have Edit and Delete actions:
index.html.erb
Edit
Delete
<% @products.eac
It needs to be product_path(product) instead of product in your delete link.
product_path(product)
product