@extends('layouts.admin') @section('title', $variantLabel) @section('page-title', $variantLabel) @section('content')
{{ __('Back') }} {{ __('Preview') }}
@csrf
{{ __('Hero Section') }}
{{ __('Texts & image') }}
@if(!empty($heroImageUrl))
@endif
@if($variant === '4')
{{ __('Hero Stats') }}
@for($i = 1; $i <= 4; $i++)
@endfor
@endif
{{ __('Logos Section') }}
{{ __('Upload partner/client logos') }}
@if($variant === '4')
@endif
@foreach(($logos ?? []) as $logo)
{{ __('Logo') }} {{ $logo['index'] }}
@if(!empty($logo['url']))
@endif
@endforeach
@if($variant === '4')
{{ __('Benefits Section') }}
{{ __('Title, subtitle, and 3 cards') }}
@for($i = 1; $i <= 3; $i++)
{{ __('Benefit Card') }} {{ $i }}
@endfor
@endif
{{ __('Features Section') }}
{{ __('Title, subtitle, and 6 cards') }}
@for($i = 1; $i <= 6; $i++)
{{ __('Feature') }} {{ $i }}
@endfor @if($variant === '4')
@endif
{{ __('AI Section') }}
{{ $variant === '4' ? __('Badge, title, subtitle, and 4 cards') : __('Badge, title, subtitle, and 2 cards') }}
@if($variant === '4')
@endif
@for($i = 1; $i <= 2; $i++)
{{ __('AI Card') }} {{ $i }}
@endfor @if($variant === '4') @for($i = 3; $i <= 4; $i++)
{{ __('AI Card') }} {{ $i }}
@endfor
@endif
@if($variant === '4')
{{ __('Testimonials Section') }}
{{ __('Title, subtitle, and 3 testimonials') }}
@for($i = 1; $i <= 3; $i++)
{{ __('Testimonial') }} {{ $i }}
@endfor
@endif
{{ __('Get Started Section') }}
{{ __('Title, subtitle, and 3 steps') }}
@for($i = 1; $i <= 3; $i++)
{{ __('Step') }} {{ $i }}
@endfor
{{ __('FAQs (Common)') }}
{{ __('Shared across all homepage variants') }}
@for($i = 1; $i <= 6; $i++)
{{ __('FAQ') }} {{ $i }}
@endfor
{{ __('Pricing (Common)') }}
{{ __('Shared across all homepage variants') }}
@for($i = 1; $i <= 3; $i++)
{{ __('Pricing Card') }} {{ $i }}
@endfor
{{ __('Final CTA (Common)') }}
{{ __('Shared across all homepage variants') }}
{{ __('Save') }}
@endsection