Section Blade component
Introduction
A section can be used to group content together, with an optional heading:
<x-filament::section>
<x-slot name="heading">
User details
</x-slot>
{{-- Content --}}
</x-filament::section>
Adding a description to the section
You can add a description below the heading to the section by using the description
slot:
<x-filament::section>
<x-slot name="heading">
User details
</x-slot>
<x-slot name="description">
This is all the information we hold about the user.
</x-slot>
{{-- Content --}}
</x-filament::section>