@extends('layouts.app') @section('title', 'Create Sales Page') @section('content')

Create Sales Page

@csrf

Basic Information

@error('name')

{{ $message }}

@enderror

Helps improve search engine visibility

@error('meta_description')

{{ $message }}

@enderror
/p/{{ auth()->user()->getUrlSlug() }}/
@error('slug')

{{ $message }}

@enderror
@error('logo')

{{ $message }}

@enderror

Check to display logo at top of sales page (you can also add it in your HTML content instead)

Browser tab icon (recommended: 32x32px or 64x64px)

Upload custom favicon (leave empty to use logo)

@error('favicon')

{{ $message }}

@enderror

Page Content (HTML)

Paste your HTML content with images, text, etc.

@error('html_content')

{{ $message }}

@enderror

Legal / Marketing / Permission (HTML) - Optional

This section appears above the footer for legal notices, marketing consent, tracking permission, etc.

@error('legal_content')

{{ $message }}

@enderror

FAQ Section - Optional

Add frequently asked questions with accordion-style answers (supports HTML)

Order Bump / Upsell Offer - Optional

Add a special offer that shows when customers select a product

@if($products->count() > 0) @else

No products available. Create products first.

@endif

This product will be offered as an add-on

@error('order_bump_product_id')

{{ $message }}

@enderror

Compelling text to encourage customers to add this product

@error('order_bump_text')

{{ $message }}

@enderror
{{ old('order_bump_text') ?: 'Add RM80 get 3 Booster Serum - Special Offer!' }}
Product name and price will appear here

Products to Sell

Select which products will be available on this sales page

@if($products->count() > 0)
@foreach($products as $product) @endforeach
@else

No products available. Create products first.

Create Product
@endif @error('available_products')

{{ $message }}

@enderror

Tracking & Analytics Pixels

Track conversions and visitor behavior with tracking pixels

Track Facebook ad conversions

Track visitor behavior and traffic sources

Track TikTok ad performance

Cancel
@endsection