151 lines
7.1 KiB
PHP
151 lines
7.1 KiB
PHP
<?php
|
|
|
|
use Illuminate\Auth\Events\PasswordReset;
|
|
use Illuminate\Support\Facades\Hash;
|
|
use Illuminate\Support\Facades\Password;
|
|
use Illuminate\Support\Facades\Session;
|
|
use Illuminate\Support\Str;
|
|
use Illuminate\Validation\Rules;
|
|
use Livewire\Attributes\Layout;
|
|
use Livewire\Attributes\Locked;
|
|
use Livewire\Volt\Component;
|
|
|
|
new #[Layout('layouts.guest')] class extends Component {
|
|
#[Locked]
|
|
public string $token = '';
|
|
public string $email = '';
|
|
public string $password = '';
|
|
public string $password_confirmation = '';
|
|
public bool $showPassword = false;
|
|
public bool $showPasswordConfirmation = false;
|
|
|
|
public function togglePasswordVisibility(): void
|
|
{
|
|
$this->showPassword = !$this->showPassword;
|
|
}
|
|
|
|
public function togglePasswordConfirmationVisibility(): void
|
|
{
|
|
$this->showPasswordConfirmation = !$this->showPasswordConfirmation;
|
|
}
|
|
|
|
public function mount(string $token): void
|
|
{
|
|
$this->token = $token;
|
|
|
|
$this->email = request()->string('email');
|
|
}
|
|
|
|
public function resetPassword(): void
|
|
{
|
|
$this->validate([
|
|
'token' => ['required'],
|
|
'email' => ['required', 'string', 'email'],
|
|
'password' => ['required', 'string', 'confirmed', Rules\Password::defaults()],
|
|
]);
|
|
|
|
$status = Password::reset($this->only('email', 'password', 'password_confirmation', 'token'), function ($user) {
|
|
$user
|
|
->forceFill([
|
|
'password' => Hash::make($this->password),
|
|
'remember_token' => Str::random(60),
|
|
])
|
|
->save();
|
|
|
|
event(new PasswordReset($user));
|
|
});
|
|
|
|
if ($status != Password::PASSWORD_RESET) {
|
|
$this->addError('email', __($status));
|
|
|
|
return;
|
|
}
|
|
|
|
Session::flash('status', __($status));
|
|
|
|
$this->redirectRoute('login', navigate: true);
|
|
}
|
|
}; ?>
|
|
|
|
<div>
|
|
<form wire:submit="resetPassword">
|
|
<!-- Email Address -->
|
|
<div>
|
|
<x-input-label for="email" :value="__('Email')" required />
|
|
<x-text-input wire:model="email" id="email" class="block mt-1 w-full py-2.5" type="email" name="email"
|
|
required autofocus autocomplete="username" />
|
|
<x-input-error :messages="$errors->get('email')" class="mt-2" />
|
|
</div>
|
|
|
|
<!-- Password -->
|
|
<div class="mt-4 relative">
|
|
<x-input-label for="password" :value="__('Password')" required />
|
|
<div class="relative">
|
|
<x-text-input wire:model="password" id="password" class="block mt-1 w-full py-2.5 pr-10"
|
|
:type="$showPassword ? 'text' : 'password'" name="password" required autocomplete="new-password" />
|
|
<button type="button" wire:click="togglePasswordVisibility"
|
|
class="absolute inset-y-0 right-0 flex items-center px-3 text-gray-600">
|
|
@if ($showPassword)
|
|
<!-- Eye Icon -->
|
|
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5" fill="none" viewBox="0 0 24 24"
|
|
stroke="currentColor">
|
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
|
|
d="M15 12a3 3 0 11-6 0 3 3 0 016 0z" />
|
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
|
|
d="M2.458 12C3.732 7.943 7.523 5 12 5c4.478 0 8.268 2.943 9.542 7-1.274 4.057-5.064 7-9.542 7-4.477 0-8.268-2.943-9.542-7z" />
|
|
</svg>
|
|
@else
|
|
<!-- Eye Off Icon -->
|
|
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5" fill="none" viewBox="0 0 24 24"
|
|
stroke="currentColor">
|
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
|
|
d="M13.875 18.825A10.05 10.05 0 0112 19c-4.478 0-8.268-2.943-9.542-7a9.97 9.97 0 011.563-3.029m5.858.908a3 3 0 114.243 4.243M9.878 9.878l4.242 4.242M9.88 9.88l-3.29-3.29m7.532 7.532l3.29 3.29M3 3l3.59 3.59m0 0A9.953 9.953 0 0112 5c4.478 0 8.268 2.943 9.542 7a10.025 10.025 0 01-4.132 5.411m0 0L21 21" />
|
|
</svg>
|
|
@endif
|
|
</button>
|
|
</div>
|
|
<x-input-error :messages="$errors->get('password')" class="mt-2" />
|
|
</div>
|
|
|
|
|
|
<!-- Confirm Password -->
|
|
<div class="mt-4 relative">
|
|
<x-input-label for="password_confirmation" :value="__('Confirm Password')" required />
|
|
<div class="relative">
|
|
<x-text-input wire:model="password_confirmation" id="password_confirmation"
|
|
class="block mt-1 w-full py-2.5 pr-10" :type="$showPasswordConfirmation ? 'text' : 'password'" name="password_confirmation" required
|
|
autocomplete="new-password" />
|
|
<button type="button" wire:click="togglePasswordConfirmationVisibility"
|
|
class="absolute inset-y-0 right-0 flex items-center px-3 text-gray-600">
|
|
@if ($showPasswordConfirmation)
|
|
<!-- Eye Icon -->
|
|
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5" fill="none" viewBox="0 0 24 24"
|
|
stroke="currentColor">
|
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
|
|
d="M15 12a3 3 0 11-6 0 3 3 0 016 0z" />
|
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
|
|
d="M2.458 12C3.732 7.943 7.523 5 12 5c4.478 0 8.268 2.943 9.542 7-1.274 4.057-5.064 7-9.542 7-4.477 0-8.268-2.943-9.542-7z" />
|
|
</svg>
|
|
@else
|
|
<!-- Eye Off Icon -->
|
|
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5" fill="none" viewBox="0 0 24 24"
|
|
stroke="currentColor">
|
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
|
|
d="M13.875 18.825A10.05 10.05 0 0112 19c-4.478 0-8.268-2.943-9.542-7a9.97 9.97 0 011.563-3.029m5.858.908a3 3 0 114.243 4.243M9.878 9.878l4.242 4.242M9.88 9.88l-3.29-3.29m7.532 7.532l3.29 3.29M3 3l3.59 3.59m0 0A9.953 9.953 0 0112 5c4.478 0 8.268 2.943 9.542 7a10.025 10.025 0 01-4.132 5.411m0 0L21 21" />
|
|
</svg>
|
|
@endif
|
|
</button>
|
|
</div>
|
|
<x-input-error :messages="$errors->get('password_confirmation')" class="mt-2" />
|
|
</div>
|
|
|
|
|
|
<div class="flex items-center justify-end mt-4 py-2.5">
|
|
<x-primary-button
|
|
class="ring-2 ring-gray-700 shadow-[4px_4px_0px_2px_#374151] text-white hover:shadow-[2px_2px_0px_2px_#374151] hover:translate-y-0.5 hover:translate-x-0.5 w-full text-center bg-orangeCrayola py-2.5">
|
|
{{ __('Atur Ulang Kata Sandi') }}
|
|
</x-primary-button>
|
|
</div>
|
|
</form>
|
|
</div>
|