@extends('admin.layout.app') @section('content')
@include('admin.layout.session')
Edit Page
@csrf @method('PUT')
@if ($errors->has('page_name'))
{{ $errors->first('page_name') }}
@endif
@if ($errors->has('description'))
{{ $errors->first('description') }}
@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
Back
@endsection @push('js') @endpush