Default value for select

I want to have the default value for a select not only pre-selected in the frontend, but also when saving. Currently, the validation throws an error that a value has to be chosen, even though the select (with placeholder disabled) shows the value that should be default.
An example:
Forms\Components\Select::make('curency')
    ->required()
    ->options([
        'EUR' => '€',
        'USD' => '$',
    ])
    ->default('EUR')
    ->disablePlaceholderSelection(),
Was this page helpful?