@csrf @method('PUT')

{{ __('تحديث المقال') }}

{{ __('تحديث وتحرير محتوى المقال') }}

@if($post->status === 'published')
{{ __('منشور') }} @elseif($post->status === 'scheduled')
{{ __('مجدول للنشر') }} @else
{{ __('مسودة') }} @endif
@if($post->published_at) {{ $post->status === 'published' ? __('نُشر في') : __('مجدول للنشر في') }}: {{ $post->published_at->format('d/m/Y H:i') }} @endif
{{ __('آخر تحديث') }}: {{ $post->updated_at->diffForHumans() }}

{{ __('محتوى المقال') }}

{{ __('تحديث محتوى المقال هنا') }}

@error('title')

{{ $message }}

@enderror
{{ url('blog/') }}/
@error('slug')

{{ $message }}

@enderror
@error('excerpt')

{{ $message }}

@enderror
{{ __('وصف قصير يساعد القراء على فهم محتوى المقال') }} {{ strlen($post->excerpt ?? '') }}/200
@error('content')

{{ $message }}

@enderror

{{ __('يمكنك استخدام Markdown للتنسيق') }}

{{ __('إعدادات SEO') }}

{{ __('تحسين المقال لمحركات البحث') }}

{{ __('يُستخدم عنوان المقال إذا ترك فارغاً') }} {{ strlen($post->meta_title ?? '') }}/60
{{ __('يُستخدم المقتطف إذا ترك فارغاً') }} {{ strlen($post->meta_description ?? '') }}/160

{{ __('إعدادات النشر') }}

{{ __('الصورة المميزة') }}

@if($post->featured_image)

{{ __('الصورة الحالية') }}

Current featured image
@endif

{{ __('انقر لاختيار صورة جديدة') }}

{{ __('PNG, JPG, GIF حتى 10MB') }}

@error('featured_image')

{{ $message }}

@enderror

{{ __('التصنيفات والعلامات') }}

{{ __('افصل العلامات بفواصل') }}

{{ __('إحصائيات المقال') }}

{{ __('تاريخ الإنشاء') }}: {{ $post->created_at->format('d/m/Y') }}
{{ __('آخر تحديث') }}: {{ $post->updated_at->diffForHumans() }}
@if(isset($post->views_count))
{{ __('المشاهدات') }}: {{ number_format($post->views_count) }}
@endif
{{ __('عدد الكلمات') }}: {{ str_word_count(strip_tags($post->content)) }}