@extends('layouts.dashboard') @section('content') @php /** * Full-page blog post editor (create + edit). Replaces the old modal so authors * get a roomy, distraction-free writing surface with the Quill rich-text editor. * * @var array|null $post existing post when editing, null when creating * @var array $categories selectable blog categories * @var array $tags selectable blog tags * @var array $postTagIds tag ids already assigned to this post (empty when creating) * @var array $seo search-result settings ['title','description','image','noindex'] */ $isEdit = $post !== null; $tags = $tags ?? []; $postTagIds = $postTagIds ?? []; $seo = $seo ?? ['title' => '', 'description' => '', 'image' => '', 'noindex' => false]; @endphp @php /* .qm-d2: the dashboard density standard (app.css ยง35) */ @endphp