@php $default_language = getDefaultLang(); @endphp @extends('core::base.layouts.master') @section('title') {{ translate('Edit Post') }} @endsection @section('custom_css') @endsection @section('main_content')
@csrf

You are editing "{{ getLanguageNameByCode($lang) }}" version

{{-- AI Assistent --}}

{{ translate('AI Assistent') }}

{{-- Language --}}

{{-- Language --}} {{-- Primary Focus --}}

{{-- Primary Focus --}} {{-- Priority Keywords --}}

{{-- Primary Focus --}} {{-- Level of creativity --}}
{{-- Level of creativity --}} {{-- Editorial Tone --}}
{{-- Editorial Tone --}} {{-- Choose Filed --}}

{{-- Choose Filed --}} {{-- Title Length --}}

{{-- Title Length --}} {{-- Short Description Length --}}

{{-- Short Description Length --}} {{-- Content Length --}}

{{-- Content Length --}}
loader
{{-- AI Assistent --}} {{-- Languages --}}
{{-- Page Title And Back Button --}}

{{ translate('Edit Post') }}

{{-- Name Field --}}
@if ($errors->has('name'))

{{ $errors->first('name') }}

@endif
{{-- Name Field End --}} {{-- Short Description Field --}}
@if ($errors->has('short_description'))

{{ $errors->first('short_description') }}

@endif
{{-- Short Description Field End --}} {{-- Content Field --}}
@if ($errors->has('content'))

{{ $errors->first('content') }}

@endif
{{-- Content Field End --}}
{{-- Seo Information --}}

{{ translate('Seo Meta Tags') }}

@if ($errors->has('meta_title'))
{{ $errors->first('meta_title') }}
@endif
@if ($errors->has('meta_description'))
{{ $errors->first('meta_description') }}
@endif
@include('core::base.includes.media.media_input', [ 'input' => 'meta_image', 'data' => $blog->meta_image, ]) @if ($errors->has('meta_image'))
{{ $errors->first('meta_image') }}
@endif
{{-- Seo Information End --}}
{{-- Edit Blog Side Field --}}
{{-- Publish Section --}}

{{ translate('Publish') }}

{{-- Draft,previe,pending button --}} {{-- visibility part --}}
{{ translate('Visibility') }} : {{ translate('Public') }} {{ translate('Edit') }} @if ($errors->has('visibility'))

{{ $errors->first('visibility') }}

@endif
visibility == 'public' ? 'checked' : '' }} name="visibility" id="visibility-radio-public" value="public" />
is_sticky == 1 ? 'checked' : '' }} />
visibility == 'password' ? 'checked' : '' }} name="visibility" id="visibility-radio-password" value="password" />

{{ translate('If Password Field is remain Empty then visibility will be saved as Public.') }}
visibility == 'private' ? 'checked' : '' }} name="visibility" id="visibility-radio-private" value="private" />
{{-- visibility part end --}} {{-- publish schedule part --}}
{{-- publish schedule part end --}}
{{-- Publish Section End --}}
{{-- Select Formate --}}

{{ translate('Formate') }}

formate == 'standard') name="formate" id="formate-standard" value="standard" />
formate == 'video') name="formate" id="formate-video" value="video" />
formate == 'audio') name="formate" id="formate-audio" value="audio" />
formate == 'gallery') name="formate" id="formate-gallery" value="gallery" />
{{-- Select Formate End --}} {{-- Select category --}}
{{-- Ajax Category Load --}}
@if ($errors->has('categories'))

{{ $errors->first('categories') }}

@endif
{{-- Select category End --}} {{-- Select Tags --}}
{{-- Ajax Tag Load --}}
{{-- Select Tags End --}} {{-- Blog Image --}}

{{ translate('Post Image') }}

{{ translate('Preferred size for thumnail image is 1110 × 578 px') }}
@include('core::base.includes.media.media_input', [ 'input' => 'blog_image', 'data' => $blog->image, ]) @if ($errors->has('image'))

{{ $errors->first('image') }}

@endif
{{-- Blog Image End --}} {{-- Blog Gallery Image --}}

{{ translate('Gallery') }}

{{ translate('Preferred size for gallery images is 1110 × 578 px') }}
@include('core::base.includes.media.media_input_multi_select', [ 'input' => 'gallery_images', 'data' => $blog->gallery_images, 'indicator' => 1, 'container_id' => '#multi_input_1', ]) @if ($errors->has('gallery_images'))

{{ $errors->first('gallery_images') }}

@endif
{{-- Blog Gallery Image End --}} {{-- Blog Status --}}

{{ translate('Post Status') }}

{{-- Blog - Featured Field --}}
@if ($errors->has('is_featured'))

{{ $errors->first('is_featured') }}

@endif
{{-- Blog - Featured Field End --}} {{-- Blog - Breaking Field --}}
{{-- Blog - Breaking Field End --}}
{{-- Blog Status End --}}
{{-- Edit Blog Side Field End --}}
@include('core::base.media.partial.media_modal') @endsection @section('custom_scripts') @endsection