@extends('layouts.internal') @section('title', 'Edit Blog Article · PLOCAL Internal') @section('content') ← Blog Articles

PLOCAL Blog

{{ $article->title }}

Status: {{ ucfirst($article->status) }}@if($article->is_featured) · Featured on the homepage @endif

@if(session('status'))
{{ session('status') }}
@endif
@csrf @method('PUT')
has('title')) aria-invalid="true" aria-describedby="blog-title-error" @endif>@error('title'){{ $message }}@enderror
@error('excerpt'){{ $message }}@enderror
@error('content'){{ $message }}@enderror
@if($article->featured_image_path)

Current cover image

{{ $article->featured_image_alt }}
@endif
@error('cover_image'){{ $message }}@enderror
Use the status actions on the article list to publish or feature.
@endsection