101 lines
3.5 KiB
PHP
101 lines
3.5 KiB
PHP
<?php
|
|
|
|
use App\Models\Log;
|
|
use App\Models\User;
|
|
use Illuminate\Support\Facades\Hash;
|
|
use Illuminate\Validation\Rules\Password;
|
|
use Illuminate\Validation\ValidationException;
|
|
use Livewire\Volt\Component;
|
|
|
|
new class extends Component
|
|
{
|
|
public string $current_password = '';
|
|
public string $password = '';
|
|
public string $password_confirmation = '';
|
|
|
|
public function updatePassword(): void
|
|
{
|
|
try {
|
|
$validated = $this->validate([
|
|
'current_password' => ['required', 'string', 'current_password'],
|
|
'password' => ['required', 'string', Password::defaults(), 'confirmed'],
|
|
]);
|
|
} catch (ValidationException $e) {
|
|
$this->reset('current_password', 'password', 'password_confirmation');
|
|
|
|
throw $e;
|
|
}
|
|
|
|
// We don't want to have a complete log, just something for updating password
|
|
activity()->withoutLogs(function () {
|
|
auth()->user()->update([
|
|
'password' => Hash::make($validated['password']),
|
|
]);
|
|
});
|
|
|
|
activity()
|
|
->event('updated')
|
|
->log('Password updated');
|
|
|
|
$this->reset('current_password', 'password', 'password_confirmation');
|
|
|
|
$this->dispatch('password-updated');
|
|
}
|
|
}; ?>
|
|
|
|
<section>
|
|
<header>
|
|
<h2 class="text-lg font-medium text-nexi-black dark:text-gray-100">
|
|
{{ __('Update Password') }}
|
|
</h2>
|
|
|
|
<p class="mt-1 text-sm text-gray-600 dark:text-gray-400">
|
|
{{ __('Ensure your account is using a long, random password to stay secure.') }}
|
|
</p>
|
|
</header>
|
|
|
|
<form wire:submit="updatePassword" class="mt-6 space-y-6">
|
|
<div>
|
|
<x-input-label for="current_password" :value="__('Current Password')"/>
|
|
<x-text-input wire:model="current_password"
|
|
id="current_password"
|
|
name="current_password"
|
|
type="password"
|
|
class="mt-1 block w-full"
|
|
autocomplete="current-password"/>
|
|
<x-input-error :messages="$errors->get('current_password')" class="mt-2"/>
|
|
</div>
|
|
|
|
<div>
|
|
<x-input-label for="password" :value="__('New Password')"/>
|
|
<x-text-input wire:model="password"
|
|
id="password"
|
|
name="password"
|
|
type="password"
|
|
class="mt-1 block w-full"
|
|
autocomplete="new-password"/>
|
|
<x-input-error :messages="$errors->get('password')" class="mt-2"/>
|
|
</div>
|
|
|
|
<div>
|
|
<x-input-label for="password_confirmation" :value="__('Confirm Password')"/>
|
|
<x-text-input wire:model="password_confirmation"
|
|
id="password_confirmation"
|
|
name="password_confirmation"
|
|
type="password"
|
|
class="mt-1 block w-full"
|
|
autocomplete="new-password"/>
|
|
<x-input-error :messages="$errors->get('password_confirmation')" class="mt-2"/>
|
|
</div>
|
|
|
|
<div class="flex items-center gap-4">
|
|
<x-primary-button wire:loading.attr="disabled"
|
|
wire:loading.class="opacity-50">{{ __('Save') }}</x-primary-button>
|
|
|
|
<x-action-message class="mr-3" on="password-updated">
|
|
{{ __('Saved.') }}
|
|
</x-action-message>
|
|
</div>
|
|
</form>
|
|
</section>
|