TextInput numeric with step

I have the following code:
  TextInput::make('qta')
    ->numeric()
    ->step(96)

Why do I only validate multiples of 96?
I i insert 24 message: the value... from 0 to 96
Was this page helpful?