<%%= simple_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.input :password %> <%%= f.input :password_confirmation %> <% else -%> <%%= f.<%= attribute.reference? ? :association : :input %> :<%= attribute.name %> %> <% end -%> <% end -%>
<%% if <%= model_resource_name %>.persisted? %>
<%%= link_to 'Destroy', <%= model_resource_name %>, method: :delete, class: "text-danger", data: { confirm: 'Are you sure?' } %>
<%% end %> <%%= f.submit class: 'btn btn-primary' %> <%% if <%= model_resource_name %>.persisted? %> <%%= link_to "Cancel", <%= model_resource_name %>, class: "btn btn-link" %> <%% else %> <%%= link_to "Cancel", <%= index_helper %>_path, class: "btn btn-link" %> <%% end %>
<%% end %>