Editing product

<% form_for(@product) do |f| %> <%= f.error_messages %>

<%= f.label :title %>
<%= f.text_field :title %>

<%= f.label :description %>
<%= f.text_area :description %>

<%= f.label :image_url %>
<%= f.text_field :image_url %>

<%= f.submit "Update" %>

<% end %> <%= link_to 'Show', @product %> | <%= link_to 'Back', products_path %>