<%= form.text_field :name %>
<% Decidim::Organization::SOCIAL_HANDLERS.each do |handler| %>
<%= form.text_field "#{handler}_handler", label: false %>
<% end %>
<%= form.collection_select :default_locale, localized_locales(current_organization.available_locales), :id, :name %>
<%= form.time_zone_select :time_zone %>
<%= form.text_field :reference_prefix %>
<%= form.check_box :badges_enabled %>
<%= form.check_box :user_groups_enabled %>
<%= form.check_box :enable_participatory_space_filters %>
<% if Decidim.config.enable_machine_translations %>
<%= form.check_box :enable_machine_translations %>
<%= form.label :machine_translation_display_priority, t("activemodel.attributes.organization.machine_translation_display_priority") %> <%= form.collection_radio_buttons :machine_translation_display_priority, form.object.machine_translation_priorities, :first, :last %>
<% end %>
<%= form.text_field :comments_max_length %>
<%= form.check_box :rich_text_editor_in_public_views, help_text: t(".rich_text_editor_in_public_views_help") %>
<%= form.check_box :send_welcome_notification %>
<%= form.check_box :customize_welcome_notification %>
<%= form.translated :text_field, :welcome_notification_subject, aria: { label: :welcome_notification_subject } %> <%= form.translated :editor, :welcome_notification_body, aria: { label: :welcome_notification_body } %>
<%= form.translated :editor, :admin_terms_of_service_body, aria: { label: :admin_terms_of_service_body } %>