@extends('employee.layouts.app')
@section('title', 'Edit Article')
@section('page-title', 'Edit Article')
@push('styles')
@endpush
@section('content')
Edit Blog Article
Any changes submitted again will go back through admin approval before publishing.
@if($blogArticle->status === 'rejected' && $blogArticle->review_note)
Admin feedback on this rejection
{{ $blogArticle->review_note }}
@endif
@include('employee.blog-articles._form', [
'action' => route('employee.blog-articles.update', $blogArticle),
'method' => 'PUT',
'blogArticle' => $blogArticle,
'categories' => $categories,
])
@endsection
@push('scripts')
@include('admin.blog-articles._tinymce')
@endpush