feat: Phase 2 - admin layout, dashboard, page CRUD, subscribers, user management

This commit is contained in:
2026-04-03 20:09:20 +02:00
parent 904cf1241b
commit 78e1be3e3b
27 changed files with 404 additions and 33 deletions

View File

@@ -0,0 +1,12 @@
@extends('layouts.admin')
@section('title', __('New page'))
@section('mobile_title', __('New page'))
@section('content')
<div class="mx-auto max-w-6xl">
<h1 class="text-2xl font-semibold text-slate-900">{{ __('Create page') }}</h1>
<p class="mt-2 text-sm text-slate-600">{{ __('Form will be added in Step 8.') }}</p>
</div>
@endsection

View File

@@ -0,0 +1,12 @@
@extends('layouts.admin')
@section('title', __('Edit') . ' — ' . $page->title)
@section('mobile_title', __('Edit'))
@section('content')
<div class="mx-auto max-w-6xl">
<h1 class="text-2xl font-semibold text-slate-900">{{ __('Edit page') }}</h1>
<p class="mt-2 text-sm text-slate-600">{{ __('Form will be added in Step 8.') }}</p>
</div>
@endsection

View File

@@ -0,0 +1,12 @@
@extends('layouts.admin')
@section('title', __('Pages'))
@section('mobile_title', __('Pages'))
@section('content')
<div class="mx-auto max-w-6xl">
<h1 class="text-2xl font-semibold text-slate-900">{{ __('Pre-registration pages') }}</h1>
<p class="mt-2 text-sm text-slate-600">{{ __('Page list and CRUD will be added in the next step.') }}</p>
</div>
@endsection

View File

@@ -0,0 +1,12 @@
@extends('layouts.admin')
@section('title', $page->title)
@section('mobile_title', $page->title)
@section('content')
<div class="mx-auto max-w-6xl">
<h1 class="text-2xl font-semibold text-slate-900">{{ $page->title }}</h1>
<p class="mt-2 text-sm text-slate-600">{{ __('Detail view placeholder.') }}</p>
</div>
@endsection