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 %>

ADDITIONAL COMMENTS (Optional)


Include any additional details you'd like your account
manager to know.
<%= f.text_area :comments, cols: 70, rows: 5 %> <%= f.hidden_field :step, value: "comments" %>
<%= f.submit "BACK", class: "btn back-btn", name: "back_btn" %> <%= f.submit "SAVE AND CONTINUE", class: "btn btn-success" %>
<% end %>