@extends('backend.layout.master-tailwind') @section('title', __('Edit Blog')) @section('admin_styles') @endsection @section('content')

{{ __('Edit Blog') }}

{{ __('Update blog post details') }}

@csrf
{{-- Left: Content + Meta --}}
{{-- Blog Details --}}

{{ __('Blog Details') }}

{{ $blog->slug }}
{{-- SEO Meta --}}

{{ __('SEO & Meta') }}

{{-- General Meta --}}
{{-- Facebook Meta --}}
{!! render_attachment_preview_for_admin($blog->meta_data->facebook_meta_image ?? '') !!}
{{-- Twitter Meta --}}
{!! render_attachment_preview_for_admin($blog->meta_data->twitter_meta_image ?? '') !!}
{{-- Right: Catalogue --}}

{{ __('Blog Catalogue') }}

{{ __('Recommended: 590×320 pixels') }}

@if($blog->image) {!! render_attachment_preview_for_admin($blog->image) !!} @endif
@endsection @section('script') @include('blog::backend.blog-js') @endsection