diff --git a/app/components/AppSidebar.vue b/app/components/AppSidebar.vue index e1a3f56..47bc5f7 100644 --- a/app/components/AppSidebar.vue +++ b/app/components/AppSidebar.vue @@ -4,7 +4,8 @@ import { CreditCard, Database, FolderKanban, - LayoutDashboard + LayoutDashboard, + Users } from "@lucide/vue" import { computed, ref, watch } from 'vue' @@ -35,6 +36,7 @@ const groups = [ { title: 'Dashboard', url: '/admin/dashboard', icon: LayoutDashboard }, { title: 'Jenis Bisnis', url: '/admin/business-types', icon: BriefcaseBusiness }, { title: 'Paket', url: '/admin/plans', icon: CreditCard }, + { title: 'Pengguna', url: '/admin/users', icon: Users }, ], }, ] diff --git a/app/components/ui/phone-input/PhoneInput.vue b/app/components/ui/phone-input/PhoneInput.vue new file mode 100644 index 0000000..faaf18b --- /dev/null +++ b/app/components/ui/phone-input/PhoneInput.vue @@ -0,0 +1,46 @@ + + + diff --git a/app/components/ui/phone-input/index.ts b/app/components/ui/phone-input/index.ts new file mode 100644 index 0000000..21323be --- /dev/null +++ b/app/components/ui/phone-input/index.ts @@ -0,0 +1 @@ +export { default as PhoneInput } from "./PhoneInput.vue" diff --git a/app/pages/admin/users/[id]/edit.vue b/app/pages/admin/users/[id]/edit.vue new file mode 100644 index 0000000..f48f569 --- /dev/null +++ b/app/pages/admin/users/[id]/edit.vue @@ -0,0 +1,232 @@ + + +