@extends('admin.layouts.master') @section('title', ucwords(str_replace('-', ' ', $slug)) . ' | Edit Page') @section('content') @include('admin.page.top-nav')
@include('admin.page.side-nav')
{{-- content --}}

Edit Page

@csrf @method('PUT')
@if ($errors->has('slug'))

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

@endif
@if ($errors->has('title.en'))

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

@endif
@if ($errors->has('title.ar'))

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

@endif
@if ($errors->has('description.en'))

{{ $errors->first('description.en') }}

@endif
@if ($errors->has('description.ar'))

{{ $errors->first('description.ar') }}

@endif
@if ($errors->has('order_no'))

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

@endif
@if ($errors->has('status'))

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

@endif
@if ($errors->has('page_link_for'))

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

@endif
@if ($errors->has('route_name'))

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

@endif
@if ($errors->has('type'))

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

@endif
@if ($page->hero_image) @endif Recommended size: 730x455 px. Formats: jpg, jpeg, png. @if ($errors->has('hero_image'))

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

@endif
@if ($errors->has('hero_title.en'))

{{ $errors->first('hero_title.en') }}

@endif
@if ($errors->has('hero_title.ar'))

{{ $errors->first('hero_title.ar') }}

@endif
@if ($errors->has('hero_sub_title.en'))

{{ $errors->first('hero_sub_title.en') }}

@endif
@if ($errors->has('hero_sub_title.ar'))

{{ $errors->first('hero_sub_title.ar') }}

@endif
@if ($errors->has('hero_description.en'))

{{ $errors->first('hero_description.en') }}

@endif
@if ($errors->has('hero_description.ar'))

{{ $errors->first('hero_description.ar') }}

@endif
@if ($errors->has('meta_title'))

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

@endif
@if ($errors->has('meta_description'))

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

@endif
@if ($errors->has('meta_keywords'))

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

@endif
@endsection