profile.blade.php 1015 B

1234567891011121314151617181920212223242526272829
  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. <div class="py-12">
  8. <div class="max-w-7xl mx-auto sm:px-6 lg:px-8 space-y-6">
  9. <div class="p-4 sm:p-8 bg-white dark:bg-gray-800 shadow sm:rounded-lg">
  10. <div class="max-w-xl">
  11. <livewire:profile.update-profile-information-form />
  12. </div>
  13. </div>
  14. <div class="p-4 sm:p-8 bg-white dark:bg-gray-800 shadow sm:rounded-lg">
  15. <div class="max-w-xl">
  16. <livewire:profile.update-password-form />
  17. </div>
  18. </div>
  19. <div class="p-4 sm:p-8 bg-white dark:bg-gray-800 shadow sm:rounded-lg">
  20. <div class="max-w-xl">
  21. <livewire:profile.delete-user-form />
  22. </div>
  23. </div>
  24. </div>
  25. </div>
  26. </x-app-layout>