PHP Classes

File: resources/js/Pages/Profile/Edit.vue

Recommend this page to a friend!
  Classes of Stanley Aloh   Inventory Assignment   resources/js/Pages/Profile/Edit.vue   Download  
File: resources/js/Pages/Profile/Edit.vue
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Inventory Assignment
Manage the inventory of stored products
Author: By
Last change:
Date: 25 days ago
Size: 1,625 bytes
 

Contents

Class file image Download
<script setup> import AuthenticatedLayout from '@/Layouts/AuthenticatedLayout.vue'; import DeleteUserForm from './Partials/DeleteUserForm.vue'; import UpdatePasswordForm from './Partials/UpdatePasswordForm.vue'; import UpdateProfileInformationForm from './Partials/UpdateProfileInformationForm.vue'; import { Head } from '@inertiajs/vue3'; defineProps({ mustVerifyEmail: { type: Boolean, }, status: { type: String, }, }); </script> <template> <Head title="Profile" /> <AuthenticatedLayout> <template #header> <h2 class="text-xl font-semibold leading-tight text-gray-800" > Profile </h2> </template> <div class="py-12"> <div class="mx-auto max-w-7xl space-y-6 sm:px-6 lg:px-8"> <div class="bg-white p-4 shadow sm:rounded-lg sm:p-8" > <UpdateProfileInformationForm :must-verify-email="mustVerifyEmail" :status="status" class="max-w-xl" /> </div> <div class="bg-white p-4 shadow sm:rounded-lg sm:p-8" > <UpdatePasswordForm class="max-w-xl" /> </div> <div class="bg-white p-4 shadow sm:rounded-lg sm:p-8" > <DeleteUserForm class="max-w-xl" /> </div> </div> </div> </AuthenticatedLayout> </template>