123 lines
4.3 KiB
PHP
123 lines
4.3 KiB
PHP
<?php
|
|
|
|
use App\Models\User;
|
|
use App\Providers\RouteServiceProvider;
|
|
use Illuminate\Support\Facades\Auth;
|
|
use Illuminate\Support\Facades\Session;
|
|
use Illuminate\Validation\Rule;
|
|
use Livewire\Volt\Component;
|
|
|
|
new class extends Component {
|
|
public string $name = '';
|
|
public string $email = '';
|
|
|
|
public function mount(): void
|
|
{
|
|
$this->name = Auth::user()->name;
|
|
$this->email = Auth::user()->email;
|
|
}
|
|
|
|
public function updateProfileInformation(): void
|
|
{
|
|
$user = Auth::user();
|
|
|
|
$validated = $this->validate([
|
|
'name' => ['required', 'string', 'max:255'],
|
|
'email' => ['required', 'string', 'lowercase', 'email', 'max:255', Rule::unique(User::class)->ignore($user->id)],
|
|
], [
|
|
'name.required' => 'Nama harus diisi.',
|
|
'name.string' => 'Nama harus berupa teks.',
|
|
'name.max' => 'Nama maksimal 255 karakter.',
|
|
|
|
'email.required' => 'Email harus diisi.',
|
|
'email.string' => 'Email harus berupa teks.',
|
|
'email.lowercase' => 'Email harus menggunakan huruf kecil.',
|
|
'email.email' => 'Format email tidak valid.',
|
|
'email.max' => 'Email maksimal 255 karakter.',
|
|
'email.unique' => 'Email sudah terdaftar di sistem.',
|
|
]);
|
|
|
|
$user->fill($validated);
|
|
|
|
if ($user->isDirty('email')) {
|
|
$user->email_verified_at = null;
|
|
}
|
|
|
|
$user->save();
|
|
|
|
$this->dispatch('profile-updated', name: $user->name);
|
|
}
|
|
|
|
public function sendVerification(): void
|
|
{
|
|
$user = Auth::user();
|
|
|
|
if ($user->hasVerifiedEmail()) {
|
|
$this->redirectIntended(default: RouteServiceProvider::HOME);
|
|
|
|
return;
|
|
}
|
|
|
|
$user->sendEmailVerificationNotification();
|
|
|
|
Session::flash('status', 'verification-link-sent');
|
|
}
|
|
}; ?>
|
|
|
|
<section>
|
|
<header>
|
|
<h2 class="text-lg font-medium text-gray-900">
|
|
{{ __('Informasi Profil') }}
|
|
</h2>
|
|
|
|
<p class="mt-1 text-sm text-gray-600">
|
|
{{ __("
|
|
Perbarui informasi profil akun dan alamat email Anda.") }}
|
|
</p>
|
|
</header>
|
|
|
|
<form wire:submit="updateProfileInformation" class="mt-6 space-y-6">
|
|
<div>
|
|
<x-input-label for="name" :value="__('Name')" />
|
|
<x-text-input wire:model="name" id="name" name="name" type="text" class="mt-1 block w-full py-2.5"
|
|
autofocus autocomplete="name" />
|
|
<x-input-error class="mt-2" :messages="$errors->get('name')" />
|
|
</div>
|
|
|
|
<div>
|
|
<x-input-label for="email" :value="__('Email')" />
|
|
<x-text-input wire:model="email" id="email" name="email" type="email"
|
|
class="mt-1 block w-full py-2.5" autocomplete="username" />
|
|
<x-input-error class="mt-2" :messages="$errors->get('email')" />
|
|
|
|
@if (auth()->user() instanceof \Illuminate\Contracts\Auth\MustVerifyEmail && !auth()->user()->hasVerifiedEmail())
|
|
<div>
|
|
<p class="text-sm mt-2 text-gray-800">
|
|
{{ __('Your email address is unverified.') }}
|
|
|
|
<button wire:click.prevent="sendVerification"
|
|
class="underline text-sm text-gray-600 hover:text-gray-900 rounded-md focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500">
|
|
{{ __('Click here to re-send the verification email.') }}
|
|
</button>
|
|
</p>
|
|
|
|
@if (session('status') === 'verification-link-sent')
|
|
<p class="mt-2 font-medium text-sm text-green-600">
|
|
{{ __('A new verification link has been sent to your email address.') }}
|
|
</p>
|
|
@endif
|
|
</div>
|
|
@endif
|
|
</div>
|
|
|
|
<div class="flex items-center gap-4">
|
|
<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 text-center bg-orangeCrayola px-20">{{ __('Simpan') }}</x-primary-button>
|
|
|
|
<x-action-message class="me-3" on="profile-updated">
|
|
{{ __('Tersimpan.') }}
|
|
</x-action-message>
|
|
</div>
|
|
</form>
|
|
</section>
|