| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- <script setup>
- import { useForm } from '@/composables/useForm'
- import AppInputText from '@/components/AppInputText.vue'
- import DashboardLayout from '@/layouts/Dashboard/DashboardLayout.vue'
-
- const props = defineProps({
- customer: Object,
- })
-
- const form = useForm({
- name: props.customer.name,
- address: props.customer.address,
- phone: props.customer.phone,
- npwp: props.customer.npwp,
- })
-
- const onSubmit = () => {
- form.put(route('customers.update', props.customer.id))
- }
- </script>
-
- <template>
- <DashboardLayout title="Ubah Pelanggan">
- <div class="grid">
- <div class="col-12">
- <Card>
- <template #title> Ubah Pelanggan </template>
- <template #content>
- <div class="grid">
- <div class="col-12 md:col-6">
- <AppInputText
- label="Nama"
- placeholder="nama"
- :error="form.errors.name"
- v-model="form.name"
- />
- </div>
-
- <div class="col-12 md:col-6">
- <AppInputText
- label="Alamat"
- placeholder="alamat"
- :error="form.errors.address"
- v-model="form.address"
- />
- </div>
-
- <div class="col-12 md:col-6">
- <AppInputText
- label="No HP"
- placeholder="no hp"
- type="number"
- :error="form.errors.phone"
- v-model="form.phone"
- />
- </div>
-
- <div class="col-12 md:col-6">
- <AppInputText
- label="NPWP"
- placeholder="npwp"
- type="number"
- :error="form.errors.npwp"
- v-model="form.npwp"
- />
- </div>
- </div>
- </template>
-
- <template #footer>
- <div class="grid">
- <div
- class="col-12 flex flex-column md:flex-row justify-content-end"
- >
- <Button
- label="Simpan"
- icon="pi pi-check"
- class="p-button-outlined"
- :disabled="form.processing"
- @click="onSubmit"
- />
- </div>
- </div>
- </template>
- </Card>
- </div>
- </div>
- </DashboardLayout>
- </template>
|