Created
February 7, 2024 17:46
-
-
Save joaopaulolndev/488bab4681a6f5c9002ed512e54303de to your computer and use it in GitHub Desktop.
Blade EditProfile
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div> | |
| <header class="fi-simple-header py-8"> | |
| <div> | |
| <h1 class="fi-header-heading text-2xl font-bold tracking-tight text-gray-950 dark:text-white sm:text-3xl"> | |
| {{__('My Profile')}} | |
| </h1> | |
| </div> | |
| <p class="fi-simple-header-subheading mt-2 text-left text-sm text-gray-500 dark:text-gray-400"> | |
| {{__('Manager your user profile')}} | |
| </p> | |
| </header> | |
| <x-filament-panels::form wire:submit="save"> | |
| {{ $this->form }} | |
| <x-filament-panels::form.actions | |
| :actions="$this->getCachedFormActions()" | |
| :full-width="$this->hasFullWidthFormActions()" | |
| alignment="right" | |
| /> | |
| </x-filament-panels::form> | |
| </div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment