diff --git a/app/components/Pp/FormInput.vue b/app/components/Pp/FormInput.vue
index 5c8c382..20b6244 100644
--- a/app/components/Pp/FormInput.vue
+++ b/app/components/Pp/FormInput.vue
@@ -1,6 +1,6 @@
-
+
@@ -9,6 +9,7 @@
type Props = {
type ?: 'text' | 'number'
max ?: number
+ min ?: number
label : string
id : string
uid : number
@@ -16,7 +17,8 @@ type Props = {
const {
type = 'text',
- max = 10,
+ min = 1,
+ max,
label,
id,
uid,
diff --git a/app/components/Pp/PriceCard.vue b/app/components/Pp/PriceCard.vue
index 5aa6836..119d1e5 100644
--- a/app/components/Pp/PriceCard.vue
+++ b/app/components/Pp/PriceCard.vue
@@ -2,12 +2,12 @@