-if Rails::VERSION::MAJOR >= 5 && Rails::VERSION::MINOR >= 1

form_with model: [@<%= singular_table_name %>.<%= nested_parent_name %>, @<%= singular_table_name %>] do |f|

-else

form_for [@<%= singular_table_name %>.<%= nested_parent_name %>, @<%= singular_table_name %>] do |f|

-if @<%= singular_table_name %>.errors.any?
  #error_explanation
    %h2= "#{pluralize(@<%= singular_table_name %>.errors.count, "error")} prohibited this <%= singular_table_name %> from being saved:"
    %ul
      - @<%= singular_table_name %>.errors.full_messages.each do |msg|
        %li= msg

<% for attribute in attributes -%>

.field
  = f.label :<%= attribute.name %>
  = f.<%= attribute.field_type %> :<%= attribute.name %>

<% end -%>

.actions
  = f.submit 'Save'