@extends(decide_template()) @section('title', $page_data['title']) @section('page_styles') @endsection @section('page_scripts') @include('includes.editor-scripts') {{-- ================================================================ Variable Picker Data (JSON for the JS picker) ================================================================ --}} @if(in_array('Emojis', whmcsAddOns())) @endif {{-- Copy as text --}} {{-- File uploader --}} {{-- Set tab order for drip page before loading the shared v2 JS --}} {{-- Shared v2 JS (tabs, variable picker, counters, collapsible cards, preheader toggle) --}} {{-- Drip-specific JS (form submit, interval toggle, test email) --}} @endsection @section(decide_content()) {{-- Flash messages --}}
@if($errors->any())
@foreach($errors->all() as $error)

{{ $error }}

@endforeach
@endif @if (Session::has('msg'))
{{ Session::get('msg') }}
@endif
{{-- === MAIN DRIP FORM wrapping all tabs === --}} @if ($page_data['action'] == 'add')
@else @endif {{-- Tab Navigation --}} {{-- Tab Content --}}
@include('autoresponder.partials._tab-details')
@include('autoresponder.partials._tab-content')
@include('autoresponder.partials._tab-preview')
{{-- Sticky Action Bar --}}
{{trans('common.form.button.cancel')}}
{{-- Modals (outside the form) --}} @include('autoresponder.partials._modals') @endsection