Skip to content

Commit 19c950c

Browse files
scott graysonscott grayson
authored andcommitted
Move is_hidden checkbox after image upload field
1 parent 1729ff4 commit 19c950c

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/Filament/Resources/Admin/ForumResource/Schemas/ForumForm.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,14 +51,14 @@ public static function configure(Schema $schema): Schema
5151
->label(__('filament-forum::filament-forum.forum.form.label.description'))
5252
->required()
5353
->columnSpanFull(),
54-
Checkbox::make('is_hidden')
55-
->label('Hidden Forum')
56-
->helperText('If checked, only assigned users can view this forum. If unchecked, all logged in users can view it.')
57-
->live(),
5854
SpatieMediaLibraryFileUpload::make('image')
5955
->label(__('filament-forum::filament-forum.forum.form.label.image'))
6056
->collection('images')
6157
->columnSpanFull(),
58+
Checkbox::make('is_hidden')
59+
->label('Hidden Forum')
60+
->helperText('If checked, only assigned users can view this forum. If unchecked, all logged in users can view it.')
61+
->live(),
6262
]),
6363
]);
6464
}

0 commit comments

Comments
 (0)