114 lines
5.3 KiB
PHP
114 lines
5.3 KiB
PHP
<section>
|
|
<header>
|
|
<h2 class="text-lg font-medium text-gray-900">
|
|
Informasi Profil
|
|
</h2>
|
|
|
|
<p class="mt-1 text-sm text-gray-600">
|
|
Perbarui data profil akun Anda.
|
|
</p>
|
|
</header>
|
|
|
|
<form id="send-verification" method="post" action="{{ route('verification.send') }}">
|
|
@csrf
|
|
</form>
|
|
|
|
<form method="post" action="{{ route('profile.update') }}" enctype="multipart/form-data" class="mt-6 space-y-6">
|
|
@csrf
|
|
@method('patch')
|
|
|
|
<div>
|
|
<x-input-label for="profile_photo" value="Foto Profil" />
|
|
@if($user->profile_photo)
|
|
<img src="{{ asset('storage/' . $user->profile_photo) }}" alt="Foto profil" class="mt-2 w-20 h-20 rounded-full object-cover border border-gray-200">
|
|
@endif
|
|
<input id="profile_photo" name="profile_photo" type="file" accept="image/*" class="mt-2 block w-full text-sm text-gray-600" />
|
|
<x-input-error class="mt-2" :messages="$errors->get('profile_photo')" />
|
|
</div>
|
|
|
|
<div>
|
|
<x-input-label for="nip" value="NIP *" />
|
|
<x-text-input id="nip" name="nip" type="text" class="mt-1 block w-full" :value="old('nip', $user->nip)" required />
|
|
<x-input-error class="mt-2" :messages="$errors->get('nip')" />
|
|
</div>
|
|
|
|
<div>
|
|
<x-input-label for="name" value="Nama" />
|
|
<x-text-input id="name" name="name" type="text" class="mt-1 block w-full" :value="old('name', $user->name)" required 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 id="email" name="email" type="email" class="mt-1 block w-full" :value="old('email', $user->email)" required autocomplete="username" />
|
|
<x-input-error class="mt-2" :messages="$errors->get('email')" />
|
|
|
|
@if ($user instanceof \Illuminate\Contracts\Auth\MustVerifyEmail && ! $user->hasVerifiedEmail())
|
|
<div>
|
|
<p class="text-sm mt-2 text-gray-800">
|
|
{{ __('Your email address is unverified.') }}
|
|
|
|
<button form="send-verification" 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>
|
|
<x-input-label for="phone" value="No Telepon *" />
|
|
<x-text-input id="phone" name="phone" type="text" class="mt-1 block w-full" :value="old('phone', $user->phone)" required />
|
|
<x-input-error class="mt-2" :messages="$errors->get('phone')" />
|
|
</div>
|
|
|
|
<div>
|
|
<x-input-label for="gender" value="Jenis Kelamin" />
|
|
<select id="gender" name="gender" class="mt-1 block w-full border-gray-300 focus:border-indigo-500 focus:ring-indigo-500 rounded-md shadow-sm">
|
|
<option value="">Pilih jenis kelamin</option>
|
|
<option value="laki-laki" @selected(old('gender', $user->gender) === 'laki-laki')>Laki-laki</option>
|
|
<option value="perempuan" @selected(old('gender', $user->gender) === 'perempuan')>Perempuan</option>
|
|
</select>
|
|
<x-input-error class="mt-2" :messages="$errors->get('gender')" />
|
|
</div>
|
|
|
|
<div>
|
|
<x-input-label for="address" value="Alamat" />
|
|
<textarea id="address" name="address" rows="3" class="mt-1 block w-full border-gray-300 focus:border-indigo-500 focus:ring-indigo-500 rounded-md shadow-sm">{{ old('address', $user->address) }}</textarea>
|
|
<x-input-error class="mt-2" :messages="$errors->get('address')" />
|
|
</div>
|
|
|
|
<div>
|
|
<x-input-label for="division" value="Divisi *" />
|
|
<x-text-input id="division" name="division" type="text" class="mt-1 block w-full" :value="old('division', $user->division)" required />
|
|
<x-input-error class="mt-2" :messages="$errors->get('division')" />
|
|
</div>
|
|
|
|
<div>
|
|
<x-input-label for="position" value="Jabatan" />
|
|
<x-text-input id="position" name="position" type="text" class="mt-1 block w-full" :value="old('position', $user->position)" />
|
|
<x-input-error class="mt-2" :messages="$errors->get('position')" />
|
|
</div>
|
|
|
|
<div class="flex items-center gap-4">
|
|
<x-primary-button>{{ __('Save') }}</x-primary-button>
|
|
|
|
@if (session('status') === 'profile-updated')
|
|
<p
|
|
x-data="{ show: true }"
|
|
x-show="show"
|
|
x-transition
|
|
x-init="setTimeout(() => show = false, 2000)"
|
|
class="text-sm text-gray-600"
|
|
>{{ __('Saved.') }}</p>
|
|
@endif
|
|
</div>
|
|
</form>
|
|
</section>
|