<%= form_with(model: product, local: true) do |form| %> <% if product.errors.any? %>

<%= pluralize(product.errors.count, "error") %> prohibited this product from being saved:

<% end %>
<%= form.label :title %> <%= form.text_field :title %>
<%= form.label :description %> <%= form.text_area :description %>
<%= form.label :image_url %> <%= form.text_field :image_url %>
<%= form.label :price %> <%= form.text_field :price %>
<%= form.submit %>
<% end %>