```php Filter::make("filters") ->form([ Select::make('status_id') ->label('Status') ->columnSpan(1) ->options(TicketStatus::all()->pluck('name', 'id')) ->multiple() ->searchable() ->native(false), Select::make('reporter_user_id') ->label('User') ->columnSpan(1) ->options(User::all()->pluck('name', 'id')) ->default(User::find(1)->name) ->multiple() ->searchable() ->native(false), ]) ``` As you can see from the picture, the default value isnt applied to the select form. Is there a reason for that? Thanks