profile.blade.php (1233B)
1 <x-app-layout> 2 <x-slot name="header"> 3 <h2 class="font-semibold text-xl text-gray-800 dark:text-gray-200 leading-tight"> 4 {{ __('Profile') }} 5 </h2> 6 </x-slot> 7 8 <div class="py-12"> 9 <div class="max-w-7xl mx-auto sm:px-6 lg:px-8 space-y-6"> 10 <div class="p-4 sm:p-8 bg-white dark:bg-gray-800 shadow sm:rounded-lg"> 11 <div class="max-w-xl"> 12 <livewire:profile.update-profile-information-form /> 13 </div> 14 </div> 15 16 <div class="p-4 sm:p-8 bg-white dark:bg-gray-800 shadow sm:rounded-lg"> 17 <div class="max-w-xl"> 18 <livewire:profile.update-password-form /> 19 </div> 20 </div> 21 22 <div class="p-4 sm:p-8 bg-white dark:bg-gray-800 shadow sm:rounded-lg"> 23 <div class="max-w-xl"> 24 <livewire:profile.delete-user-form /> 25 </div> 26 </div> 27 28 <div class="p-4 sm:p-8 bg-white dark:bg-gray-800 shadow sm:rounded-lg"> 29 <div class="max-w-xl"> 30 <livewire:profile.api-tokens /> 31 </div> 32 </div> 33 </div> 34 </div> 35 </x-app-layout>