Version

Theme

NOTE

You are currently viewing the documentation for Filament 4.x, which is currently in beta and is not stable. Breaking changes may be introduced to releases during the beta period. Please report any issues you encounter on GitHub.

Looking for the current stable version? Visit the 3.x documentation.

Components

Fieldset Blade component

Introduction

You can use a fieldset to group multiple form fields together, optionally with a label:

<x-filament::fieldset>
    <x-slot name="label">
        Address
    </x-slot>
    
    {{-- Form fields --}}
</x-filament::fieldset>
Edit on GitHub

Still need help? Join our Discord community or open a GitHub discussion

Previous
Dropdown Blade component