@extends('layouts.vuexy') @section('title', 'Nueva campaña — Configuración') @section('content') @include('campaigns.partials._wizard-steps', ['step' => 2]) @if ($errors->any())
{{ $errors->first() }}
@endif
{{ $content['restaurant_name'] }}
Editar contenido
@csrf
@php $budgetType = old('budget_type', $draft['budget_type'] ?? 'daily'); @endphp
@php $audienceType = old('audience_type', $draft['audience_type'] ?? 'new'); @endphp
Atrás
Vista previa del anuncio
@include('campaigns.partials._ad-preview', [ 'imageUrl' => $content['image_url'], 'restaurantName' => $content['restaurant_name'], 'headline' => $content['headline'] ?? null, 'primaryText' => $content['primary_text'] ?? null, 'badgeText' => $content['discount_badge_text'] ?? null, 'ctaLabel' => 'Realizar pedido', ])
@endsection