@extends('admin.layouts.app') @section('content')
Edit Page
@csrf @method('put')
@if($errors->has('name'))
{{ $errors->first('name') }}
@endif
@if($errors->has('description'))
{{ $errors->first('description') }}
@endif
@if($errors->has('image'))
{{ $errors->first('image') }}
@endif
Back
@endsection @push('scripts_footer') @include('admin.misc.scripts.dropzone_cms_banner') @endpush