diff --git a/resources/js/Pages/Contacts/Create.vue b/resources/js/Pages/Contacts/Create.vue index 6b91dac..cbf9cb6 100644 --- a/resources/js/Pages/Contacts/Create.vue +++ b/resources/js/Pages/Contacts/Create.vue @@ -57,16 +57,16 @@ export default { data() { return { form: this.$inertia.form({ - first_name: null, - last_name: null, + first_name: '', + last_name: '', organization_id: null, - email: null, - phone: null, - address: null, - city: null, - region: null, - country: null, - postal_code: null, + email: '', + phone: '', + address: '', + city: '', + region: '', + country: '', + postal_code: '', }), } }, diff --git a/resources/js/Pages/Contacts/Edit.vue b/resources/js/Pages/Contacts/Edit.vue index 7374fe4..e74007c 100644 --- a/resources/js/Pages/Contacts/Edit.vue +++ b/resources/js/Pages/Contacts/Edit.vue @@ -1,5 +1,6 @@