<%= form.text_field :title %>
<%= form.text_area :body, rows: 10 %>
<% if feature_settings.geocoding_enabled? %>
<%= form.text_field :address %>
<% end %>
<% if @form.categories&.any? %>
<%= form.categories_select :category_id, @form.categories, prompt: t(".select_a_category") %>
<% end %>
<% if !@form.process_scope %>
<%= form.collection_select :scope_id, organization_scopes, :id, :name %>
<% end %>