@extends('admin.layouts.app') @section('title', isset($blog->id) ? 'Blog Düzenle' : 'Yeni Blog Yazısı') @section('page-title', isset($blog->id) ? 'Blog Yazısı Düzenle' : 'Yeni Blog Yazısı') @push('styles') @endpush @section('content')
{{-- LEFT: AI Üretici --}}
AI Blog Yazısı Üretici — DeepSeek ile otomatik SEO içeriği üret
{{-- FORM --}}
@csrf @if(isset($blog->id)) @method('PUT') @endif
{{-- Başlık --}}
{{ mb_strlen(old('title', $blog->title ?? '')) }}/60
{{-- Excerpt --}}
{{ mb_strlen(old('excerpt', $blog->excerpt ?? '')) }}/160
{{-- Content --}}
HTML etiketleri desteklenir. AI içeriği doğrudan buraya eklenir.
{{-- SEO Önizleme --}}
animexe.com/blog/...
{{ old('title', $blog->title ?? 'Başlık giriniz') }}
{{ old('meta_description', $blog->meta_description ?? 'Açıklama giriniz') }}
{{-- Yayın Durumu --}}
{{-- Anime --}}
{{-- Kapak Görseli --}}
{{-- Odak Kelime --}}
{{-- Meta Description --}}
{{ mb_strlen(old('meta_description', $blog->meta_description ?? '')) }}/160
{{-- Meta Keywords --}}
{{-- Okuma Süresi --}}
İptal
@endsection @push('scripts') @endpush