Custom page form showing as $this->form

Hi, I'm trying to build a single custom page to edit a particular record

My view file is as follow

<x-filament-panels::page>
    <x-filament-panels::form wire:submit="save">
        {{ $this->form }}

        <x-filament-panels::form.actions
            :actions="$this->getCachedFormActions()"
            :full-width="$this->hasFullWidthFormActions()"
        />
    </x-filament-panels::form>
</x-filament-panels::page>


However, it look like this
CleanShot_2024-01-17_at_18.35.39.png
Was this page helpful?