When setting the minimum and maximum prices of products, I encountered an issue where entering 10.000 displayed as 10000. To automatically add a decimal point to numbers and display it correctly as 10.000, I attempted the following solutions:
<input type="number" step="0.01">
<input type="number" step=".01">
<input type="number" step="any">
Unfortunately, none of these methods were successful in resolving the problem.