Enter specifics about your campaign.
<%= form_for campaign, url: campaign_path, turboboost: :true, html: { validate: true} do |f| %>
<%= image_tag("event_campaign.png") %>Event Performer
PERFORMER SPECIFIC
<%= f.label "Tell us about the performer you are looking for", class: 'volite fs10' %>
(Provide specifics like: DJ, Performer, Social Media Influencer, Chef, etc.)
<% option_for_select = []
Talent.non_custom.each do |talent|
option_for_select << [talent.id, talent.name]
end
option_for_select << ['other', 'Other' ]
%>
<%= f.collection_select :talent_id, option_for_select, :first, :last, {prompt: false }, { class: 'select2-selector mt20', validate: true } %>
<%= f.text_field :other_talent_name, class: "#{ campaign.talent.try(:custom_talent?) ? '' : 'hide'} mt10 ml20 mb20", value: "#{ campaign.talent.try(:custom_talent?) ? campaign.talent.name : ''}" %>
<%= f.hidden_field :step, value: "talent" %>
<%= f.submit "BACK", class: "btn back-btn", name: "back_btn" %>
<%= f.submit "SAVE AND CONTINUE", class: "btn btn-success" %>
<% end %>