@extends('backend.layouts.backend') @section('styles') @endsection @section('main_body')

{{ $post ? 'Update' : 'New' }} {{ $is_product ? 'Product' : 'Post' }}

Fill in the form below and submit. All fields are important.

@csrf

{{ get_option('ak_app_url') }}/{{ $post->slug ?? '' }}

0 words
SEO Details

{{ get_option('ak_app_url') }}/{{ $post->slug ?? '' }}

{{ $post->seo_title ?? '' }} - {{ get_option('ak_app_title') }}

{{ $post->seo_description ?? '' }}


SEO Hints
  1. Focus keyword field is a must starting with the most relevant keyword/key phrase.
  2. The first focus key phrase should appear on the SEO title, SEO description and the body
  3. The SEO title should be between 55 and 60 characters
  4. The SEO description should be between 155 and 160 characters
0 characters
0 characters
@if (can_publish($logged_user))
@php $checked = ''; if (!$post || ($post && $post->status_id != 2)) { $checked = 'checked'; } @endphp
status_id == 2 ? 'checked' : '' }}>
@endif
@if (can_publish($logged_user))
@php $post_tags = ''; if ($post && $post->tags) { foreach ($post->tags as $tag) { $post_tags .= $tag->name . ','; } } @endphp
@endif
Please provide at least one author.
@php if ($post && $post->main_image) { $image = Storage::disk('public')->url($post->main_image->file_name); } else { $image = fetch_image(null, 'md'); } @endphp
Responsive image

Change Image
@if (can_publish($logged_user)) @if ($is_product)
@else
is_breaking ? 'checked' : '' }}>
is_featured ? 'checked' : '' }}>
is_sponsored ? 'checked' : '' }}>
display_ads ? '' : 'checked' }}>
@if (config('cms.has_premium_feature'))
is_premium ? '' : 'checked' }}>
@endif
@endif @if (get_option('ak_sticky_posts') > 0)
@endif @endif
Preview
Go Back @if (can_publish($logged_user)) @if (!$post || ($post && $post->status_id != 3)) @endif @endif
@include('backend.pages.media.media_modal') @endsection @section('scripts') @endsection