Card
Overview
The card component may be used to render the form components inside a card:
use Filament\Forms\Components\Card;
Card::make()
->schema([
// ...
])
Using grid columns within a card
You may use the columns()
method to easily create a grid within the card:
use Filament\Forms\Components\Card;
Card::make()
->schema([
// ...
])
->columns(2)