@props([
'incentive' => null,
'source' => null,
'headline' => 'Kostenlos anmelden',
'subline' => 'Kein Spam. Jederzeit abmelbar.',
'variant' => 'box',
])
@php
$isUnlocked = \App\Support\Leads\LeadGate::isUnlocked(request());
$result = session('lead_result', []);
$step = $result['step'] ?? null;
@endphp
@if($isUnlocked || $step === 'confirmed' || $step === 'already_confirmed')
✓
@if($step === 'confirmed') E-Mail bestätigt! Schau in dein Postfach.
@else Du bist bereits dabei!
@endif
@elseif($step === 'otp' || $step === 'resent')
@include('components.partials.lead-form', ['showOtp' => true, 'incentive' => $incentive, 'source' => $source])
@else
@include('components.partials.lead-form', ['showOtp' => false, 'incentive' => $incentive, 'source' => $source, 'headline' => $headline, 'subline' => $subline, 'variant' => $variant])
@endif