PHP Classes

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

Recommend this page to a friend!
  Classes of Robert Devenyi   Iceburg SAAS PHP CRM Open Source   resources/js/Pages/Profile/Show.vue   Download  
File: resources/js/Pages/Profile/Show.vue
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Iceburg SAAS PHP CRM Open Source
Application to manage the contacts of customers
Author: By
Last change:
Date: 10 months ago
Size: 2,107 bytes
 

Contents

Class file image Download
<script setup> import AppLayout from '@/Layouts/AppLayout.vue'; import DeleteUserForm from '@/Pages/Profile/Partials/DeleteUserForm.vue'; import LogoutOtherBrowserSessionsForm from '@/Pages/Profile/Partials/LogoutOtherBrowserSessionsForm.vue'; import SectionBorder from '@/Components/SectionBorder.vue'; import TwoFactorAuthenticationForm from '@/Pages/Profile/Partials/TwoFactorAuthenticationForm.vue'; import UpdatePasswordForm from '@/Pages/Profile/Partials/UpdatePasswordForm.vue'; import UpdateProfileInformationForm from '@/Pages/Profile/Partials/UpdateProfileInformationForm.vue'; defineProps({ confirmsTwoFactorAuthentication: Boolean, sessions: Array, }); </script> <template> <AppLayout title="Profile"> <template #header> <h2 class="font-semibold text-xl text-gray-800 leading-tight"> Profile </h2> </template> <div> <div class="max-w-7xl mx-auto py-10 sm:px-6 lg:px-8"> <div v-if="$page.props.jetstream.canUpdateProfileInformation"> <UpdateProfileInformationForm :user="$page.props.user" /> <SectionBorder /> </div> <div v-if="$page.props.jetstream.canUpdatePassword"> <UpdatePasswordForm class="mt-10 sm:mt-0" /> <SectionBorder /> </div> <div v-if="$page.props.jetstream.canManageTwoFactorAuthentication"> <TwoFactorAuthenticationForm :requires-confirmation="confirmsTwoFactorAuthentication" class="mt-10 sm:mt-0" /> <SectionBorder /> </div> <LogoutOtherBrowserSessionsForm :sessions="sessions" class="mt-10 sm:mt-0" /> <template v-if="$page.props.jetstream.hasAccountDeletionFeatures"> <SectionBorder /> <DeleteUserForm class="mt-10 sm:mt-0" /> </template> </div> </div> </AppLayout> </template>