Update product

<%= form_for(@product) do |f| %> <%= f.label :name %> <%= f.text_field :name %> <%= f.label :purchase_price %> <%= f.number_field :purchase_price %> <%= f.label :sale_price %> <%= f.number_field :sale_price %> <%= f.label :img_path %> <%= f.text_field :img_path %> <%= f.submit "Save changes", class: "btn btn-primary" %> <% end %>