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

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

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