<%= decidim_form_for(@form) do |form| %>
<%= 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 %>
<% if current_user.user_groups.verified.any? %>
<%= form.select :user_group_id, current_user.user_groups.verified.map{|g| [g.name, g.id]}, prompt: current_user.name %>
<% end %>
<%= form.submit t(".send"), class: "button expanded", "data-disable-with" => "#{t('.send')}..." %>
<% end %>