@extends('layouts.admin') @section('title', 'Edit '.Str::lower($moduleSingular)) @section('heading', $moduleTitle.' — '.($record->title ?? $record->name ?? $record->label ?? 'edit')) @section('content')
@csrf @method('PUT') @include($formPartial, ['record' => $record])
Back to list @can($moduleKey.'.delete') @csrf @method('DELETE') @endcan
{{-- Modules with child records (project media, album items, page blocks) render their manager below the main form. --}} @includeIf($formPartial.'-relations', ['record' => $record]) @endsection