@extends('backend.layouts.app') @section('content') {{__('app.cms.title')}} {{$title}} {{$title}} @include('backend.layouts.alert') @csrf @method('PUT') {{__('app.cms.page_name')}} @if ($errors->has('page_name')) {{ $errors->first('page_name') }} @endif {{__('app.cms.content')}} {!! old('content', $cmsPage->content ?? '') !!} @if ($errors->has('content')) {{ $errors->first('content') }} @endif @endsection