%= form_for(@category) do |f| %>
<% if @category.errors.any? %>
<%= pluralize(@category.errors.count, "error") %> prohibited this category from being saved:
<% @category.errors.full_messages.each do |message| %>
- <%= message %>
<% end %>
<% end %>
<%= f.label :title %>
<%= f.text_field :title %>
<%= f.submit %>
<% end %>