@extends('layouts.admin') @section('title', 'Create Post - Admin') @section('content') {{-- Page Header: Title and back link --}}
{{-- Page Title: Large text (4xl), bold, heading font, white text --}}

Create New Post

{{-- Back Link: Accent color, hover effect, top margin, inline-block --}} ← Back to Posts
{{-- Create Post Form: Dark card background, border, rounded corners, padding --}}
@csrf {{-- Form Fields Container: Vertical spacing between fields (space-y-6) --}}
{{-- Title Field: Required input with validation --}}
{{-- Label: Block display, light text, semibold, bottom margin --}} {{-- Input: Full width, padding, dark background, border, rounded, light text, focus accent border --}} {{-- Error Message: Top margin, small text, red color --}} @error('title')

{{ $message }}

@enderror
{{-- Slug --}}
@error('slug')

{{ $message }}

@enderror
{{-- Category --}}
@error('category')

{{ $message }}

@enderror
{{-- Excerpt --}}
@error('excerpt')

{{ $message }}

@enderror
{{-- Content --}}
@error('content')

{{ $message }}

@enderror
{{-- Featured Image --}}
@error('featured_image')

{{ $message }}

@enderror
{{-- Meta Title --}}
@error('meta_title')

{{ $message }}

@enderror
{{-- Meta Description --}}
@error('meta_description')

{{ $message }}

@enderror
{{-- Published At --}}
@error('published_at')

{{ $message }}

@enderror
{{-- Submit Button --}}
Cancel
@endsection