MIF_E31230910_MP-HRIS-WEB/app/Http/Requests/UpdateProfileRequest.php

36 lines
968 B
PHP

<?php
namespace App\Http\Requests;
use Illuminate\Foundation\Http\FormRequest;
use Illuminate\Support\Facades\Auth;
use Illuminate\Validation\Rule;
class UpdateProfileRequest extends FormRequest
{
public function authorize(): bool
{
return Auth::check();
}
public function rules(): array
{
return [
'nama_lengkap' => ['required', 'string', 'max:255'],
'email' => ['required', 'string', 'email', 'max:255', Rule::unique('users')->ignore(Auth::id())],
'foto' => ['nullable', 'image', 'mimes:jpeg,png,jpg', 'max:2048'],
'password' => ['nullable', 'string', 'min:8', 'confirmed'],
];
}
public function attributes(): array
{
return [
'nama_lengkap' => 'Nama Lengkap',
'email' => 'Alamat Email',
'foto' => 'Foto Profil',
'password' => 'Password Baru',
];
}
}