<%= simple_form_for [:staff, @passport], wrapper: :horizontal_form do |f| %>
<%= f.simple_fields_for :passport_maps do |ff| %> <%= ff.input :surname %> <%= ff.input :given_name %> <%= ff.input :patronymic %> <%= ff.input :sex, as: :radio_buttons, wrapper: :horizontal_collection_inline, collection: PassportMap.sexes.keys.map { |sex| [PassportMap.human_attribute_name("sex.#{sex}"), sex] } %> <%= ff.input :date_of_birth, wrapper: :horizontal_multi_select, start_year: Date.today.year - 150, end_year: Date.today.year %> <%= ff.input :place_of_birth %> <%= ff.input :series %> <%= ff.input :number %> <%= ff.input :issued_by %> <%= ff.input :unit_code %> <%= ff.input :date_of_issue, wrapper: :horizontal_multi_select, start_year: Date.today.year - 150, end_year: Date.today.year %> <% end %>
<%= f.input :images %>
<%= image_tag 'image_placeholder.png', id: :image, class: 'img-fluid', style: 'max-height: 600px' %>
<%= f.button :submit %> <% end %>