Card
Overview
The card component may be used to render the form components inside a card:
use Filament\Forms\Components\Card;
Card::make()
->schema([
// ...
])
![Card](https://github.com/filamentphp/filament/blob/3.x/docs-assets/screenshots/images/light/forms/layout/card/simple.jpg?raw=true)
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)