How to make TextInput accept only 2 decimals

The price must only contain 2 decimals
Forms\Components\TextInput::make('price')
    ->numeric()
    ->inputMode('numeric')
    ->minValue(0.01)
    ->step(0.01)
    ->required()
    ->suffixIcon('heroicon-m-currency-euro')
,

But when i try it out, i can write several decimals.
What i am missing?
Screenshot_2024-03-13_at_12.22.18.png
Was this page helpful?