{{ Form::hidden('campaign_type', $campaign->type) }} {{ Form::hidden('campaign_event', $campaign_event->campaign_event) }}
{{ Form::hidden('is_ignore', 0) }} {{ Form::label_styled("Ignore", 'bt-bottom-margin-label', \App\Helpers\FormComponentHelper::SIZE_EXLARGE, 3) }} {{ Form::checkbox_ex('is_ignore', $campaign_event->is_ignore, '', 'show_hide_scheduling_data(this.checked ? 1 : 0)') }}
@if ($campaign->type == \App\Models\Campaign::CAMPAIGN_TYPE_ENGAGE) {{ Form::hidden('specific_date', 0) }} {{ Form::row_label_inline("Sequence", $campaign_event->sequence_text, 'label-grey bt-bottom-margin-label', 3, 9, \App\Helpers\FormComponentHelper::SIZE_EXLARGE ) }}
{{ Form::label_ex('Delay', \App\Helpers\FormComponentHelper::SIZE_EXLARGE, null, 3 ) }} {{ Form::text_suffix("delay", $campaign_event->delay, null, "day(s)") }}
@else
{{ Form::label_styled("Schedule", 'bt-bottom-margin-label', \App\Helpers\FormComponentHelper::SIZE_EXLARGE, 3) }} {{ Form::radio_ex("specific_date", 0, $campaign_event->specific_date, 'Automatically add to calendar', 9, 'on_change_specific_date(this.value)') }}
{{ Form::label_ex('Delay:', \App\Helpers\FormComponentHelper::SIZE_SMALL ) }} {{ Form::text_suffix("delay", $campaign_event->delay, null, "day(s)") }}
{{ Form::radio_ex("specific_date", 1, $campaign_event->specific_date, 'Pick a specific date', null, 'on_change_specific_date(this.value)') }}
{{ Form::date_ex("scheduled_date", $campaign_event->scheduled_date, 8) }}
{{ Form::label_ex('Send Time:', \App\Helpers\FormComponentHelper::SIZE_SMALL ) }} {{ Form::text_ex("scheduled_time", $campaign_event->scheduled_time, null, 'scheduled_time', null, 'no-padding') }}
@if (isset($request)) {{ Form::separator_row('grey-divider thin-divider') }} @endif @endif