Adding a note on top of a form
I am trying to show a small note section / card on top of the form to create a resource record. Section form component works great, but I can't disable the bottom part where the fields are supposed to go.
I've been looking up the docs for a while, if there is something sutable, I can't find it.
Any suggestion on how to handle this?
I've been looking up the docs for a while, if there is something sutable, I can't find it.
Any suggestion on how to handle this?

Solution
I don't want to be manually styling and setting views for it either. So here is what I came up with. It is not ideal but it does the trick.
What do you think?
- Publish the section.index view form the support components provider
- Publish the components.section view from from filament forms provider.
- In the section.index checl if the component has a schema and pass it to the form section component
<x-filament::section :has-components="(bool) $getChildComponentContainer()->getFlatComponents()" ... /> - Accept the property in the section component
@props(['hasComponents' => false, ...]) and use it in few of the checks to disable the click event listener, cursor style and the chevron trigger button.
What do you think?
