Form Select Component doesn't want to take default() value

Hi, Im creating Select in my form

Forms\Components\Select::make('email')
                    ->options(function () {
                        return User::all()->pluck('email', 'id');
                    })->default(auth()->user()->id)
                    ->required()  


Select doesnt react to any changes that I apply. My end goal is to create select with all users email- but when record is already created i want to pass these user email as default. Options method seems fine, I have all options with proper values and names.
Was this page helpful?