<%= 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,
disabled: true,
collection: PassportMap.sexes.keys.map { |sex|
[PassportMap.human_attribute_name("sex.#{sex}"), sex]
} %>
<%= ff.input :date_of_birth,
wrapper: :horizontal_multi_select,
disabled: true,
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,
disabled: true,
start_year: Date.today.year - 150,
end_year: Date.today.year %>
<% end %>
<% @passport.image.try do |image| %>
<%= image_tag url_for(image), id: :image, class: 'img-fluid', style: 'max-height: 600px' %>
<% end %>
<% end %>