@extends('layouts.admin_app') @section('title','Edit Page - Admin Dashboard') @section('content')

Edit Page

@include('flash-message')
{{@csrf_field()}}
@if($errors->has('heading_eng')) @component('components.error') {{$errors->first('heading_eng')}} @endcomponent @endif
@if($errors->has('description_eng')) @component('components.error') {{$errors->first('description_eng')}} @endcomponent @endif

Meta Information

@if($errors->has('meta_title')) @component('components.error') {{$errors->first('meta_title')}} @endcomponent @endif
@if($errors->has('meta_description')) @component('components.error') {{$errors->first('meta_description')}} @endcomponent @endif
@if($errors->has('meta_keywords')) @component('components.error') {{$errors->first('meta_keywords')}} @endcomponent @endif
@endsection