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

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

{{-- Page Title And Back Button --}}

{{ translate('Edit 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' => $page->meta_image, ]) @if ($errors->has('meta_image'))
{{ $errors->first('meta_image') }}
@endif
{{-- Seo Information End --}}
{{-- Edit 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
visibility == 'public' ? 'checked' : '' }} name="visibility" id="visibility-radio-public" value="public" />
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 --}}
{{ translate('Publish') }} :
{{-- publish schedule part end --}} {{-- publish builder part --}} @if (isActivePluging('newslooks-pagebuilder'))
{{ translate('Make with Builder') }} :
@endif {{-- publish builder part end --}}
{{-- Publish Section End --}}
{{-- Page Attributes --}}

{{ translate('Page Attributes') }}

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

{{ translate('Featured Image') }}

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

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

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