<%%= form_with(model: <%= model_resource_name %>) do |form| %> <%% 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? -%> <%%= form.label :password, class: "u-display-b txt--bold push-xs--bottom" %> <%%= form.password_field :password, class: "input" %>
<%%= form.label :password_confirmation, class: "u-display-b txt--bold push-xs--bottom" %> <%%= form.password_field :password_confirmation, class: "input" %> <% elsif attribute.attachments? -%> <%%= form.label :<%= attribute.column_name %>, class: "u-display-b txt--bold push-xs--bottom" %> <%%= form.<%= attribute.field_type %> :<%= attribute.column_name %>, multiple: true, class: "input" %> <% else -%> <%%= form.label :<%= attribute.column_name %>, class: "u-display-b txt--bold push-xs--bottom" %> <%%= form.<%= attribute.field_type %> :<%= attribute.column_name %>, class: "input" %> <% end -%>
<% end -%>
<%%= form.submit class: "btn btn--primary" %>
<%% end %>