<%= form_with(model: fertilizer_product) do |form| %> <% if fertilizer_product.errors.any? %>

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

<% end %>
<%= form.label :name, style: "display: block" %> <%= form.text_field :name %>
<%= form.label :purity, style: "display: block" %> <%= form.text_field :purity %>
<%= form.submit %>
<% end %>