@extends('layouts.admin') @section('title', 'Edit SEO Halaman') @section('content')

Edit SEO Halaman

Edit pengaturan SEO untuk halaman {{ $pageSeo->page_identifier }}

@csrf @method('PUT')

Informasi Dasar SEO

Pengaturan SEO dasar untuk halaman

@error('page_identifier')

{{ $message }}

@enderror
@error('title')

{{ $message }}

@else

Meta title untuk search engine

@enderror {{ strlen(old('title', $pageSeo->title)) }}/60
@error('description')

{{ $message }}

@else

Deskripsi yang muncul di hasil pencarian

@enderror {{ strlen(old('description', $pageSeo->description)) }}/160
@error('keywords')

{{ $message }}

@else

Pisahkan dengan koma untuk multiple keywords

@enderror

Open Graph (Facebook)

Pengaturan untuk tampilan di media sosial

@error('og_title')

{{ $message }}

@endif
@error('og_image')

{{ $message }}

@else

Ukuran disarankan: 1200x630px

@enderror @if($pageSeo->og_image)
Current OG Image

Gambar saat ini

@endif
@error('og_description')

{{ $message }}

@endif

Twitter Card

Pengaturan untuk tampilan di Twitter

@error('twitter_title')

{{ $message }}

@endif
@error('twitter_image')

{{ $message }}

@else

Ukuran disarankan: 1200x675px

@enderror @if($pageSeo->twitter_image)
Current Twitter Image

Gambar saat ini

@endif
@error('twitter_description')

{{ $message }}

@endif

Pengaturan Lanjutan

Schema markup dan pengaturan SEO lanjutan

@error('schema_markup')

{{ $message }}

@else

Opsional: Structured data JSON-LD untuk halaman ini

@enderror
Batal

Preview SEO

Preview Google

{{ $pageSeo->title ?: 'Meta Title' }}
{{ url('/') }}/{{ $pageSeo->page_identifier }}
{{ $pageSeo->description ?: 'Meta description akan muncul di sini...' }}

Preview Facebook

@if($pageSeo->og_image) OG Image @else Upload gambar untuk preview @endif
{{ $pageSeo->og_title ?: $pageSeo->title ?: 'OG Title' }}
{{ $pageSeo->og_description ?: $pageSeo->description ?: 'OG Description...' }}
{{ parse_url(url('/'), PHP_URL_HOST) }}

Tips SEO

  • • Title 50-60 karakter
  • • Description 150-160 karakter
  • • Gunakan keyword utama
  • • Buat title yang menarik
@push('scripts') @endpush @endsection