@include('business.ticket.btaf._btaf_text_row', ['label' => 'Client LinkedIn Username', 'name' =>'client_linkedin_username'])
@include('business.ticket.btaf._btaf_text_row', ['label' => 'Geography', 'name' =>'geography'])
@include('business.ticket.btaf._btaf_text_row', ['label' => 'Industry', 'name' =>'industry'])
{{ Form::label_styled('Company Headcount', null, \App\Helpers\FormComponentHelper::SIZE_LARGE, 3) }}
@foreach(\App\Models\Business_Linkedin_Campaign::$headcount_map as $name => $title)
{{ Form::checkbox_ex($name, $additional_fields->$name, $title, null, null, 3) }}
@endforeach
{{ Form::label_styled('Seniority Level', null, \App\Helpers\FormComponentHelper::SIZE_LARGE, 3) }}
@foreach(\App\Models\Business_Linkedin_Campaign::$seniority_map as $name => $title)
{{ Form::checkbox_ex($name, $additional_fields->$name, $title, null, null, 3) }}
@endforeach
@if($additional_fields->business_linkedin_campaign)
{{ Form::button_link('Add Search Urls', '#view-business-ticket-links') }}
@endif
@include('business.ticket.btaf._btaf_text_row', ['label' => 'Campaign Name', 'name' =>'title'])
@include('business.ticket.btaf._btaf_text_area_row', ['label' => 'Intro Message (Connection Message)', 'name' =>'intro_message'])
@include('business.ticket.btaf._btaf_text_row', ['label' => 'Follow Up Message Timing', 'name' =>'follow_up_message_timing'])
@include('business.ticket.btaf._btaf_text_area_row', ['label' => 'Follow Up (Welcome) Message Text', 'name' =>'follow_up_message_text'])
@include('business.ticket.btaf._btaf_text_row', ['label' => 'Challenger Article Link', 'name' =>'challenge_article_link'])
{{ Form::label_styled('Active', null, \App\Helpers\FormComponentHelper::SIZE_LARGE, 3) }}
@if($additional_fields->active == null)
{{ Form::select_ex('active', 1, array('1' => 'Active', '0' => 'Inactive'), 3) }}
@else
{{ Form::select_ex('active', $additional_fields->active, array('1' => 'Active', '0' => 'Inactive'), 3) }}
@endif