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

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

<%% end %> <% attributes.each do |attribute| -%>
<% if attribute.password_digest? -%> <%%= f.label :password %>
<%%= f.password_field :password %>
<%%= f.label :password_confirmation %>
<%%= f.password_field :password_confirmation %> <% else -%> <%%= f.label :<%= attribute.column_name %> %>
<%%= f.<%= attribute.field_type %> :<%= attribute.column_name %> %> <% end -%>
<% end -%>
<%%= f.submit %>
<%% end %>