feat: update phone number label to 'No. Telepon' in EmployeeCreate and EmployeeEdit components

This commit is contained in:
Yoga Pangestu 2026-07-30 13:39:05 +07:00
parent cc2b6c6b3a
commit f93bd17b2d
3 changed files with 3 additions and 3 deletions

View File

@ -48,7 +48,7 @@ public function attributes(): array
'email' => 'Email', 'email' => 'Email',
'username' => 'Username', 'username' => 'Username',
'full_name' => 'Nama Lengkap', 'full_name' => 'Nama Lengkap',
'phone_number' => 'Nomor HP', 'phone_number' => 'No. Telepon',
'gender' => 'Jenis Kelamin', 'gender' => 'Jenis Kelamin',
'birth_date' => 'Tanggal Lahir', 'birth_date' => 'Tanggal Lahir',
'address' => 'Alamat', 'address' => 'Alamat',

View File

@ -107,7 +107,7 @@ export default function EmployeeCreate() {
</div> </div>
<div className="grid gap-2"> <div className="grid gap-2">
<Label htmlFor="phone_number"> <Label htmlFor="phone_number">
Nomor HP No. Telepon
</Label> </Label>
<PhoneNumberInput name="phone_number"/> <PhoneNumberInput name="phone_number"/>
<InputError message={errors.phone_number} /> <InputError message={errors.phone_number} />

View File

@ -132,7 +132,7 @@ export default function EmployeeEdit({ employee }: Props) {
</div> </div>
<div className="grid gap-2"> <div className="grid gap-2">
<Label htmlFor="phone_number"> <Label htmlFor="phone_number">
Nomor HP No. Telepon
</Label> </Label>
<PhoneNumberInput name="phone_number"/> <PhoneNumberInput name="phone_number"/>
<InputError message={errors.phone_number} /> <InputError message={errors.phone_number} />