Split component only takes up half the form

    public static function form(Form $form): Form
    {
        return $form
            // ->extraAttributes(['max-width' => '100%'])
            ->schema([
                Split::make([
                    Section::make([
                        TextInput::make('title'),
                        Textarea::make('content'),
                    ]),
                    Section::make([
                        Toggle::make('is_published'),
                        Toggle::make('is_featured'),
                    ])->grow(false),
                ])->from('md')
            ]);
    }
image.png
Solution
try
Split::make([])->columnSpanFull()
Was this page helpful?