How to make TextInput accept only 2 decimals
The price must only contain 2 decimals
But when i try it out, i can write several decimals.
What i am missing?
But when i try it out, i can write several decimals.
What i am missing?

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