@extends('layouts.master') @section('page_title', $title) @section('content')
{{ Form::page_header( $title, "paper_stack") }} {{ Form::open(['url' => action('CampaignEventController@update_settings', compact('campaign_event'))]) }}
@if($campaign_event->is_article) {{ Form::row_select_inline('article_type', 'Article Type', $campaign_event->_article->article_type, $campaign_event->_article->get_article_type_select(), 3, 4, \App\Helpers\FormComponentHelper::SIZE_EXLARGE, null, 'Select One') }} {{ Form::row_select_inline('diction', 'Diction', $campaign_event->diction, \App\Models\Campaign::$diction_map, 3, 4, \App\Helpers\FormComponentHelper::SIZE_EXLARGE) }} {{ Form::row_select_inline('tone_1', 'Tone', $campaign_event->tone_1, \App\Models\Campaign::$tone_1_map, 3, 4, \App\Helpers\FormComponentHelper::SIZE_EXLARGE) }} {{ Form::row_select_inline('tone_2', '', $campaign_event->tone_2, \App\Models\Campaign::$tone_2_map, 3, 4, \App\Helpers\FormComponentHelper::SIZE_EXLARGE) }} {{ Form::row_select_inline('tone_3', '', $campaign_event->tone_3, \App\Models\Campaign::$tone_3_map, 3, 4, \App\Helpers\FormComponentHelper::SIZE_EXLARGE) }} {{ Form::row_select_inline('delivery', 'Delivery', $campaign_event->delivery, \App\Helpers\RequestDataHelper::$delivery_map, 3, 4, \App\Helpers\FormComponentHelper::SIZE_EXLARGE) }} {{ Form::row_select_inline('voice', 'Voice', $campaign_event->voice, \App\Helpers\RequestDataHelper::$voice_map, 3, 4, \App\Helpers\FormComponentHelper::SIZE_EXLARGE) }} @endif @include('reach.campaign_event.scheduling._campaign_event_schedule_edit') {{ Form::hidden('industry', $campaign_event->industry ? $campaign_event->_industry->industry : '') }} {{ Form::row_label_inline('Category & Drivers', $campaign_event->industry ? $campaign_event->_industry->industry_name : '', 'label-grey', 3, 9,\App\Helpers\FormComponentHelper::SIZE_EXLARGE ) }} @foreach($drivers as $driver)
{{ Form::checkbox_row('campaign_event_driver['.$driver->income_stream.']', in_array($driver->income_stream, $current_drivers) ? 1 : 0, $driver->income_stream_name) }}
@endforeach
{{ Form::button_save() }} {{ Form::button_link('Close', action('CampaignEventController@view_settings', compact('business', 'campaign_event'))) }}
{{ Form::close() }}
@endsection @section('page_script') @include('reach.campaign_event.scheduling._campaign_event_schedule_script') @endsection @section('page_style') @include('reach.campaign_event.scheduling._campaign_event_schedule_style') @endsection