schneespur/resources/views/profile/partials/delete-user-form.blade.php
Michael 2c63440ed8 Revert: move code back to project root from schneespur/ subdirectory
- Reverts the schneespur/ subdirectory restructure (b8e426b)
- Restores package.json and vite.config.js (needed for npm build, were
  removed in an earlier cleanup before the restructure)
- Updates public/build/ assets with current Vite output (new content hashes)
2026-05-17 18:24:26 +00:00

55 lines
1.8 KiB
PHP

<section class="space-y-6">
<header>
<h2 class="text-lg font-medium text-gray-900">
{{ __('profile.section_delete') }}
</h2>
<p class="mt-1 text-sm text-gray-600">
{{ __('profile.section_delete_description') }}
</p>
</header>
<x-danger-button
x-data=""
x-on:click.prevent="$dispatch('open-modal', 'confirm-user-deletion')"
>{{ __('profile.btn_delete') }}</x-danger-button>
<x-modal name="confirm-user-deletion" :show="$errors->userDeletion->isNotEmpty()" focusable>
<form method="post" action="{{ route('profile.destroy') }}" class="p-6">
@csrf
@method('delete')
<h2 class="text-lg font-medium text-gray-900">
{{ __('profile.delete_confirm_title') }}
</h2>
<p class="mt-1 text-sm text-gray-600">
{{ __('profile.delete_confirm_description') }}
</p>
<div class="mt-6">
<x-input-label for="password" value="{{ __('Password') }}" class="sr-only" />
<x-text-input
id="password"
name="password"
type="password"
class="mt-1 block w-3/4"
placeholder="{{ __('Password') }}"
/>
<x-input-error :messages="$errors->userDeletion->get('password')" class="mt-2" />
</div>
<div class="mt-6 flex justify-end">
<x-secondary-button x-on:click="$dispatch('close')">
{{ __('profile.btn_cancel') }}
</x-secondary-button>
<x-danger-button class="ms-3">
{{ __('profile.btn_delete') }}
</x-danger-button>
</div>
</form>
</x-modal>
</section>