<%= form_for(@category) do |f| %> <% if @category.errors.any? %>

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

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