@extends('admin.layouts.app') @section('content')
@if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif

Update CMS Page

@csrf @method('PUT')
@if ($errors->has('privacy_policy')) {{ $errors->first('privacy_policy') }} @endif
@if ($errors->has('terms_condition')) {{ $errors->first('terms_condition') }} @endif
@if ($errors->has('disclaimer')) {{ $errors->first('disclaimer') }} @endif
@if ($errors->has('cookie_policy')) {{ $errors->first('cookie_policy') }} @endif
@if ($errors->has('others')) {{ $errors->first('others') }} @endif
@endsection @push('scripts') @endpush