@extends('layouts.app') @section('content') @php $status = old('status', $cms->status); @endphp

@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
Edit CMS Page

Update page details, slug and content.

@csrf @method('PUT')
@error('title')
{{ $message }}
@enderror
URL
Blank rakhne par title se slug ban jayega.
@error('slug')
{{ $message }}
@enderror
@error('status')
{{ $message }}
@enderror
@error('description')
{{ $message }}
@enderror
Back
@endsection