@extends('core::base.layouts.master') @section('title') {{ translate('Add Page') }} @endsection @section('custom_css') @endsection @section('main_content')
@csrf

You are inserting "{{ getLanguageNameByCode(getDefaultLang()) }}" version

{{ translate('Add Page') }}

{{-- Title Field --}}
@if ($errors->has('title'))

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

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

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

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

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

@include('core::base.includes.media.media_input', [ 'input' => 'meta_image', 'data' => old('meta_image'), ]) @if ($errors->has('meta_image'))

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

@endif
{{-- Seo Information End --}}
{{-- Add Page 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



{{ translate('If Password Field is remain Empty then visibility will be saved as Public.') }}

{{-- visibility part end --}} {{-- publish schedule part --}}
{{ translate('Publish') }} :
{{-- publish schedule part end --}} {{-- Page Builder Part Start --}} @if (isActivePluging('newslooks-pagebuilder'))
{{ translate('Make with Builder') }} :
@endif {{-- Page Builder Part End --}}
{{-- Publish Section End --}} {{-- Page Attributes --}}

{{ translate('Page Attributes') }}

@if ($errors->has('page_parent'))

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

@endif
{{-- Page Attributes End --}} {{-- Featured Image --}}

{{ translate('Featured Image') }}

@include('core::base.includes.media.media_input', [ 'input' => 'page_image', 'data' => old('page_image'), ]) @if ($errors->has('page_image'))

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

@endif
{{-- Page Image End --}}
{{-- Add Page Side Field End --}}
@include('core::base.media.partial.media_modal') @endsection @section('custom_scripts') @endsection