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
<% else %>
<%= image_tag("social_media_icon.png") %>Social Media Campaign
<% end %>
PLEASE ADD THE CAMPAIGN KEYWORDS SEPARATED BY A COMMA
<%= f.text_field :keywords %>
<%= f.hidden_field :step, value: "keywords" %>
<%= f.submit "BACK", class: "btn back-btn", name: "back_btn" %>
<%= f.submit "SAVE AND CONTINUE", class: "btn btn-success" %>
<% end %>