@extends('layouts.admin') @section('header', 'Edit Email Campaign') @section('content')

Edit Email Campaign

Update your email marketing campaign

@csrf @method('PUT')

Campaign Details

@error('name')

{{ $message }}

@enderror
@error('subject')

{{ $message }}

@enderror
@error('from_name')

{{ $message }}

@enderror
@error('from_email')

{{ $message }}

@enderror

Leave empty to use the From Email as Reply-To

@error('reply_to')

{{ $message }}

@enderror

Email Content

You can use HTML tags for formatting

@error('content')

{{ $message }}

@enderror

Optional plain text version for email clients that don't support HTML

@error('plain_text')

{{ $message }}

@enderror

Recipients

@foreach($recipientLists as $list)
id, old('recipient_lists', $campaignLists)) ? 'checked' : '' }}>

{{ $list->subscribers_count }} subscribers

@endforeach
@error('recipient_lists')

{{ $message }}

@enderror

Send a test email to this address before sending to all recipients

@error('test_email')

{{ $message }}

@enderror

Scheduling

The campaign will be sent as soon as you submit this form

Choose a specific date and time to send this campaign

Save this campaign as a draft to send later

@error('send_option')

{{ $message }}

@enderror
@error('scheduled_date')

{{ $message }}

@enderror
@error('scheduled_time')

{{ $message }}

@enderror

Tracking Options

track_opens) ? 'checked' : '' }}>

Track when recipients open your email

track_clicks) ? 'checked' : '' }}>

Track when recipients click links in your email

Cancel
@push('scripts') @endpush @endsection