Enter specifics about your campaign.
<%= form_for campaign, url: campaign_path, turboboost: :true, validate: true do |f| %>
<% if campaign.event? %>
<%= image_tag("event_icon.png") %>Event Campaign
EVENT LOCATION
Choose the location of the event
<% else %>
<%= image_tag("social_media_icon.png") %>Social Media Campaign
AUDIENCE TARGETED LOCATION
Choose the location you would like to target
<% end %>
<%= f.text_field :location %>
<%= f.hidden_field :step, value: "location" %>
<%= f.submit "BACK", class: "btn back-btn", name: "back_btn" %>
<%= f.submit "SAVE AND CONTINUE", class: "btn btn-success" %>
<% end %>