@extends('layouts.app') @section('title','Blog SEO') @section('content')
{{-- Page Header --}}

{{ $p_title ?? 'SEO Meta Data' }}

@can('manager_master-data_blog-list') {{ $url_text ?? 'View All' }} @endcan
{{-- Card --}}
{{-- Form --}}
@csrf
{{-- Section Title --}}
SEO Meta Data
{{-- Meta Title --}}
@error('meta_title') {{ $message }} @enderror
{{-- Meta Description --}}
@error('meta_description') {{ $message }} @enderror
{{-- Meta Keywords --}}
@error('meta_keywords') {{ $message }} @enderror
{{-- Meta Tags --}}
@error('meta_tags') {{ $message }} @enderror
{{-- Submit Button --}}
{{-- End Form --}}
{{-- Optional Description --}} @if(!empty($p_description))

{{ $p_description }}

@endif
@endsection