|
0
|
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 @include('profile.partials.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 @include('profile.partials.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 @include('profile.partials.delete-user-form')
|
|
|
25 </div>
|
|
|
26 </div>
|
|
|
27 </div>
|
|
|
28 </div>
|
|
|
29 </x-app-layout>
|