['required', 'string', 'max:255'], 'email' => ['required', 'email', Rule::unique('users', 'email')->ignore($this->user()?->id)], 'phone' => ['nullable', 'string', 'max:32'], 'password' => ['nullable', 'string', 'confirmed', 'min:8'], ]; } }