*
@if ($errors->has('content'))
{{ $errors->first('content') }}
@endif
@if(isset($document) && $document->id)
Document Information
Created: {{ $document->created_at->format('M d, Y g:i A') }}
Last Updated: {{ $document->updated_at->format('M d, Y g:i A') }}
Created By: {{ $document->creator->first_name ?? 'Unknown' }} {{ $document->creator->last_name ?? '' }}
Status:
@if($document->is_active)
Active
@else
Inactive
@endif
@if($document->pdf_path)
PDF Generated: View PDF
@endif
@endif