mirror of
https://github.com/HolgerHatGarKeineNode/einundzwanzig-app.git
synced 2025-12-14 12:06:46 +00:00
- Added `#[SeoDataAttribute]` annotations to Livewire components for SEO management. - Extended translations in English, Spanish, and German for better localization support.
65 lines
2.2 KiB
PHP
65 lines
2.2 KiB
PHP
<?php
|
|
|
|
use App\Attributes\SeoDataAttribute;
|
|
use App\Livewire\Actions\Logout;
|
|
use App\Traits\SeoTrait;
|
|
use Illuminate\Support\Facades\Auth;
|
|
use Livewire\Volt\Component;
|
|
|
|
new
|
|
#[SeoDataAttribute(key: 'settings_delete_user_form')]
|
|
class extends Component {
|
|
use SeoTrait;
|
|
|
|
public string $password = '';
|
|
|
|
/**
|
|
* Delete the currently authenticated user.
|
|
*/
|
|
public function deleteUser(Logout $logout): void
|
|
{
|
|
$this->validate([
|
|
'password' => ['required', 'string', 'current_password'],
|
|
]);
|
|
|
|
tap(Auth::user(), $logout(...))->delete();
|
|
|
|
$this->redirect('/', navigate: true);
|
|
}
|
|
}; ?>
|
|
|
|
<section class="mt-10 space-y-6">
|
|
<div class="relative mb-5">
|
|
<flux:heading>{{ __('Delete account') }}</flux:heading>
|
|
<flux:subheading>{{ __('Delete your account and all of its resources') }}</flux:subheading>
|
|
</div>
|
|
|
|
<flux:modal.trigger name="confirm-user-deletion">
|
|
<flux:button variant="danger" x-data="" x-on:click.prevent="$dispatch('open-modal', 'confirm-user-deletion')">
|
|
{{ __('Delete account') }}
|
|
</flux:button>
|
|
</flux:modal.trigger>
|
|
|
|
<flux:modal name="confirm-user-deletion" :show="$errors->isNotEmpty()" focusable class="max-w-lg">
|
|
<form wire:submit="deleteUser" class="space-y-6">
|
|
<div>
|
|
<flux:heading size="lg">{{ __('Are you sure you want to delete your account?') }}</flux:heading>
|
|
|
|
<flux:subheading>
|
|
{{ __('Once your account is deleted, all of its resources and data will be permanently deleted. Please enter your password to confirm you would like to permanently delete your account.') }}
|
|
</flux:subheading>
|
|
</div>
|
|
|
|
<flux:input wire:model="password" :label="__('Password')" type="password"/>
|
|
|
|
<div class="flex justify-end space-x-2 rtl:space-x-reverse">
|
|
<flux:modal.close>
|
|
<flux:button variant="filled">{{ __('Cancel') }}</flux:button>
|
|
</flux:modal.close>
|
|
|
|
<flux:button variant="danger" type="submit">{{ __('Delete account') }}</flux:button>
|
|
</div>
|
|
</form>
|
|
</flux:modal>
|
|
</section>
|