@extends('layouts.admin') @section('title', 'SEO Settings') @section('content')
@php $faviconUrl = !empty($seo->favicon) ? asset($seo->favicon) : null; $logoUrl = !empty($seo->logo) ? asset($seo->logo) : null; $ogImageUrl = !empty($seo->og_image) ? asset($seo->og_image) : null; $inputClass = 'w-full rounded-2xl border border-slate-300 bg-white px-4 py-3 text-sm text-slate-800 shadow-sm outline-none transition duration-200 placeholder:text-slate-400 focus:border-blue-500 focus:ring-4 focus:ring-blue-100'; $textareaClass = 'w-full rounded-2xl border border-slate-300 bg-white px-4 py-3 text-sm text-slate-800 shadow-sm outline-none transition duration-200 placeholder:text-slate-400 focus:border-blue-500 focus:ring-4 focus:ring-blue-100'; $labelClass = 'mb-2 block text-sm font-semibold text-slate-700'; $sectionClass = 'rounded-[28px] border border-slate-200 bg-white p-5 shadow-sm md:p-6'; $uploadWrapClass = 'rounded-[24px] border border-dashed border-slate-300 bg-slate-50 p-4 transition hover:border-blue-300 hover:bg-blue-50/40'; @endphp {{-- Header --}}
Search Engine Setup

SEO Settings

Meta tags, verification codes, favicon, OG image, indexing, robots.txt and sitemap setup.

Quick Note
সব public SEO information এখান থেকে centrally manage করতে পারবে।
{{-- Toast --}} @if(session('success') || session('error')) @endif {{-- Validation Errors --}} @if($errors->any())
Please fix the following errors:
    @foreach($errors->all() as $error)
  • • {{ $error }}
  • @endforeach
@endif
@csrf {{-- Basic SEO --}}

Basic SEO

তোমার সাইটের primary SEO title, canonical URL, description এবং keywords সেট করো।

{{-- Open Graph / Social --}}

Open Graph / Social

Facebook, WhatsApp, Twitter/X এবং social share preview এর জন্য data সেট করো।

@if($ogImageUrl)
Current OG Image
OG Image
@endif
{{-- Verification Codes --}}

Verification Codes

Search console এবং different platform verification codes এখানে রাখো।

{{-- Brand Assets --}}

Brand Assets

Favicon, logo এবং business information visually manage করো।

@if($faviconUrl)
Current Favicon
Favicon
@endif
@if($logoUrl)
Current Logo
Logo
@endif
{{-- Support Info --}}

Support Info

এই তথ্যগুলো footer, schema বা support contact area তে ব্যবহার করা যাবে।

{{-- Indexing --}}

Indexing & Search Display

Search engine indexing এবং social meta behavior এখান থেকে control করো।

{{-- robots --}}

robots.txt Settings

Crawling rules এবং sitemap reference এখান থেকে control করো।

Recommended: admin, user, login, register, dashboard, subscription pages disallow করে রাখো।
{{-- Submit --}}
@endsection @push('scripts') @endpush