Width of create and edit forms

Hi everyone, I'm new to Filament and can't seem to figure out how to make the edit and create forms be wider. The tables are full width (8 cols) but I can't seem to get the same with the forms. What am I missing here?
No description
Solution:
use ```php return $form ->columns(1) ->schema([...])...
Jump to solution
2 Replies
Solution
LeandroFerreira
use
return $form
->columns(1)
->schema([...])
return $form
->columns(1)
->schema([...])
Jessy
Jessy3w ago
Amazing, thank you.