芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/qrafiqxcreativeagency.com/accounts/office/app/Http/Requests/User/UpdateProfile.php
'required|max:50', 'password' => 'nullable|min:8|max:50', 'image' => 'image|max:2048', 'mobile' => 'nullable|numeric', 'date_of_birth' => 'nullable|date_format:"' . $setting->date_format . '"|before_or_equal:'.now($setting->timezone)->format($setting->date_format), ]; if (user()->email != $this->email) { $rules['email'] = [ 'required', 'email:rfc', 'regex:/(.+)@(.+)\.(.+)/i', 'unique:user_auths,email,' . user()->user_auth_id . ',id', ]; } return $rules; } /** * Get the validation messages that apply to the request. * * @return array */ public function messages() { return [ 'image.image' => 'Profile picture should be an image', ]; } }