Implement Weeztix integration per documentation: database config and subscriber coupon_code, OAuth redirect/callback, admin setup UI with company/coupon selection via AJAX, synchronous coupon creation on public subscribe with duplicate and rate-limit handling, Mailwizz field mapping for coupon codes, subscriber table and CSV export, and connection hint on the pages list. Made-with: Cursor
60 lines
3.3 KiB
PHP
60 lines
3.3 KiB
PHP
@extends('layouts.admin')
|
|
|
|
@section('title', __('Edit') . ' — ' . $page->title)
|
|
|
|
@section('mobile_title', __('Edit page'))
|
|
|
|
@section('content')
|
|
<div class="mx-auto max-w-4xl">
|
|
<div class="mb-8">
|
|
<a href="{{ route('admin.pages.index') }}" class="text-sm font-medium text-indigo-600 hover:text-indigo-500">← {{ __('Back to pages') }}</a>
|
|
<h1 class="mt-4 text-2xl font-semibold text-slate-900">{{ __('Edit page') }}</h1>
|
|
<p class="mt-2 rounded-lg bg-slate-50 px-3 py-2 font-mono text-xs text-slate-700">
|
|
{{ __('Public URL') }}: <a href="{{ route('public.page', ['publicPage' => $page]) }}" class="text-indigo-600 hover:underline" target="_blank" rel="noopener">{{ url('/r/'.$page->slug) }}</a>
|
|
</p>
|
|
@can('update', $page)
|
|
<p class="mt-3 flex flex-wrap gap-x-4 gap-y-1">
|
|
<a href="{{ route('admin.pages.mailwizz.edit', $page) }}" class="text-sm font-medium text-indigo-600 hover:text-indigo-500">{{ __('Mailwizz integration') }} →</a>
|
|
<a href="{{ route('admin.pages.weeztix.edit', $page) }}" class="text-sm font-medium text-indigo-600 hover:text-indigo-500">{{ __('Weeztix integration') }} →</a>
|
|
</p>
|
|
@endcan
|
|
</div>
|
|
|
|
@include('admin.pages._save_flash')
|
|
|
|
<form action="{{ route('admin.pages.update', $page) }}" method="post" enctype="multipart/form-data" class="space-y-8" novalidate>
|
|
@csrf
|
|
@method('PUT')
|
|
@if ($errors->any())
|
|
<div class="rounded-lg border border-red-200 bg-red-50 px-4 py-3 text-sm text-red-800" role="alert">
|
|
<p class="font-medium">{{ __('Please fix the following:') }}</p>
|
|
<ul class="mt-2 list-inside list-disc space-y-1">
|
|
@foreach ($errors->all() as $message)
|
|
<li>{{ $message }}</li>
|
|
@endforeach
|
|
</ul>
|
|
</div>
|
|
@endif
|
|
|
|
<section class="rounded-xl border border-slate-200 bg-white p-6 shadow-sm sm:p-8" aria-labelledby="page-settings-heading">
|
|
<h2 id="page-settings-heading" class="text-lg font-semibold text-slate-900">{{ __('Page settings') }}</h2>
|
|
<p class="mt-1 text-sm text-slate-600">{{ __('Title, dates, messages, and background for this pre-registration page.') }}</p>
|
|
<div class="mt-6">
|
|
@include('admin.pages._form', ['page' => $page])
|
|
</div>
|
|
</section>
|
|
|
|
<section class="rounded-xl border border-slate-200 bg-white p-6 shadow-sm sm:p-8" aria-labelledby="page-blocks-heading">
|
|
@include('admin.pages._blocks_editor', ['page' => $page])
|
|
</section>
|
|
|
|
<div class="flex gap-3">
|
|
<button type="submit" class="rounded-lg bg-indigo-600 px-4 py-2.5 text-sm font-semibold text-white shadow-sm hover:bg-indigo-500">
|
|
{{ __('Save changes') }}
|
|
</button>
|
|
<a href="{{ route('admin.pages.index') }}" class="rounded-lg border border-slate-300 bg-white px-4 py-2.5 text-sm font-semibold text-slate-700 shadow-sm hover:bg-slate-50">{{ __('Cancel') }}</a>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
@endsection
|