124 lines
3.9 KiB
PHP
124 lines
3.9 KiB
PHP
<?php
|
|
|
|
use App\Concerns\ProfileValidationRules;
|
|
use App\Models\User;
|
|
use Illuminate\Contracts\Auth\MustVerifyEmail;
|
|
use Illuminate\Support\Facades\Auth;
|
|
use Illuminate\Support\Facades\Session;
|
|
use Illuminate\Validation\Rule;
|
|
use Livewire\Attributes\Computed;
|
|
use Livewire\Component;
|
|
|
|
new class extends Component {
|
|
use ProfileValidationRules;
|
|
|
|
public string $name = '';
|
|
public string $email = '';
|
|
|
|
/**
|
|
* Mount the component.
|
|
*/
|
|
public function mount(): void
|
|
{
|
|
$this->name = Auth::user()->name;
|
|
$this->email = Auth::user()->email;
|
|
}
|
|
|
|
/**
|
|
* Update the profile information for the currently authenticated user.
|
|
*/
|
|
public function updateProfileInformation(): void
|
|
{
|
|
$user = Auth::user();
|
|
|
|
$validated = $this->validate($this->profileRules($user->id));
|
|
|
|
$user->fill($validated);
|
|
|
|
if ($user->isDirty('email')) {
|
|
$user->email_verified_at = null;
|
|
}
|
|
|
|
$user->save();
|
|
|
|
$this->dispatch('profile-updated', name: $user->name);
|
|
}
|
|
|
|
/**
|
|
* Send an email verification notification to the current user.
|
|
*/
|
|
public function resendVerificationNotification(): void
|
|
{
|
|
$user = Auth::user();
|
|
|
|
if ($user->hasVerifiedEmail()) {
|
|
$this->redirectIntended(default: route('dashboard', absolute: false));
|
|
|
|
return;
|
|
}
|
|
|
|
$user->sendEmailVerificationNotification();
|
|
|
|
Session::flash('status', 'verification-link-sent');
|
|
}
|
|
|
|
#[Computed]
|
|
public function hasUnverifiedEmail(): bool
|
|
{
|
|
return Auth::user() instanceof MustVerifyEmail && ! Auth::user()->hasVerifiedEmail();
|
|
}
|
|
|
|
#[Computed]
|
|
public function showDeleteUser(): bool
|
|
{
|
|
return ! Auth::user() instanceof MustVerifyEmail
|
|
|| (Auth::user() instanceof MustVerifyEmail && Auth::user()->hasVerifiedEmail());
|
|
}
|
|
}; ?>
|
|
|
|
<section class="w-full">
|
|
@include('partials.settings-heading')
|
|
|
|
<x-pages::settings.layout :heading="__('Profile')" :subheading="__('Update your name and email address')">
|
|
<form wire:submit="updateProfileInformation" class="my-6 w-full space-y-6">
|
|
<x-input wire:model="name" label="{{ __('Name') }}" type="text" required autofocus autocomplete="name" icon="o-user" />
|
|
|
|
<div>
|
|
<x-input wire:model="email" label="{{ __('Email') }}" type="email" required autocomplete="email" icon="o-envelope" />
|
|
|
|
@if ($this->hasUnverifiedEmail)
|
|
<div>
|
|
<p class="mt-4 text-sm opacity-70">
|
|
{{ __('Your email address is unverified.') }}
|
|
|
|
<a class="link link-primary text-sm cursor-pointer" wire:click.prevent="resendVerificationNotification">
|
|
{{ __('Click here to re-send the verification email.') }}
|
|
</a>
|
|
</p>
|
|
|
|
@if (session('status') === 'verification-link-sent')
|
|
<p class="mt-2 text-sm font-medium text-success">
|
|
{{ __('A new verification link has been sent to your email address.') }}
|
|
</p>
|
|
@endif
|
|
</div>
|
|
@endif
|
|
</div>
|
|
|
|
<div class="flex items-center gap-4">
|
|
<div class="flex items-center justify-end">
|
|
<x-button type="submit" label="{{ __('Save') }}" class="btn-primary" spinner="updateProfileInformation" data-test="update-profile-button" />
|
|
</div>
|
|
|
|
<x-action-message class="me-3" on="profile-updated">
|
|
{{ __('Saved.') }}
|
|
</x-action-message>
|
|
</div>
|
|
</form>
|
|
|
|
@if ($this->showDeleteUser)
|
|
<livewire:pages::settings.delete-user-form />
|
|
@endif
|
|
</x-pages::settings.layout>
|
|
</section>
|