mirror of
https://github.com/usetrmnl/byos_laravel.git
synced 2026-01-13 23:18:10 +00:00
60 lines
2.1 KiB
PHP
60 lines
2.1 KiB
PHP
<?php
|
|
|
|
use App\Livewire\Actions\Logout;
|
|
use Illuminate\Support\Facades\Auth;
|
|
use Livewire\Volt\Component;
|
|
|
|
new class extends Component {
|
|
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 space-y-6">
|
|
<form wire:submit="deleteUser">
|
|
<h2 class="text-lg font-medium text-gray-900">
|
|
{{ __('Are you sure you want to delete your account?') }}
|
|
</h2>
|
|
|
|
<p class="mt-1 text-sm text-gray-600">
|
|
{{ __('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.') }}
|
|
</p>
|
|
|
|
<div class="mt-6">
|
|
<flux:input wire:model="password" id="password" label="{{ __('Password') }}" type="password" name="password" />
|
|
</div>
|
|
|
|
<div class="mt-6 flex justify-end space-x-2">
|
|
<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>
|