@extends('layouts.partials.master') @section('title', 'Editar página - Centro de Ajuda') @push('styles') @endpush @section('content')
@include('layouts.components.section-title', ['title' => 'Editar página']) Voltar
@include('layouts.components.alerts')
@csrf @method('PUT')
@if ($errors->has('title'))
{{ $errors->first('title') }}
@endif
@if ($errors->has('content'))
{{ $errors->first('content') }}
@endif
@endsection @push('scripts') @vite('resources/js/cfg_help_centre_pages/form.js') @endpush