🤩 File Manager - Mr.X
PHP:
8.3.33
Server:
Apache
OS:
Linux 5.14.0-611.49.1.el9_7.x86_64
User:
websparkit
Navigate
Upload:
Upload
New File
New Folder
Editing:Edit.vue
<script setup lang="ts"> 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?: boolean; status?: string; }>(); </script> <template> <Head title="Profile" /> <AuthenticatedLayout> <template #header> <h2 class="text-xl font-semibold leading-tight text-gray-800 dark:text-gray-200" > 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 dark:bg-gray-800" > <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 dark:bg-gray-800" > <UpdatePasswordForm class="max-w-xl" /> </div> <div class="bg-white p-4 shadow sm:rounded-lg sm:p-8 dark:bg-gray-800" > <DeleteUserForm class="max-w-xl" /> </div> </div> </div> </AuthenticatedLayout> </template>
Save Changes
Cancel
Create New File
Create New Folder