<%= 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 :name %> <%= form.text_field :name %>
<%= form.label :description %> <%= form.text_area :description %>
<%= form.label :price %> <%= form.text_field :price %>
<%= form.submit %>
<% end %>