<%= form_for(@search_provider_group_name, :html => {id: 'search_provider_group_name_form'} ) do |f| %>
<% if @search_provider_group_name.errors.any? %>
<%= pluralize(@search_provider_group_name.errors.count, "error") %>
<% @search_provider_group_name.errors.full_messages.each do |msg| %>
- <%= msg %>
<% end %>
<% end %>
<%= f.label :name %>
<%= f.text_field(:name, :size => 25, id: 'name_s') %>
<%= f.submit I18n.t("validate").capitalize, class: "btn btn-default btn-xs" %>
<% end %>