user(); $request->validate([ 'password' => 'nullable|min:6|confirmed', 'password_confirmation' => 'nullable', 'foto_profil' => 'nullable|image|mimes:jpg,jpeg,png,webp|max:2048', ], [ 'password.min' => 'Password minimal 6 karakter.', 'password.confirmed' => 'Konfirmasi password tidak cocok.', 'foto_profil.image' => 'File harus berupa gambar.', 'foto_profil.max' => 'Ukuran foto maksimal 2MB.', ]); $data = []; $fotoUrl = null; if ($request->filled('password')) { $data['password'] = Hash::make($request->password); } if ($request->hasFile('foto_profil')) { if ($guru->foto_profil && Storage::disk('public')->exists($guru->foto_profil)) { Storage::disk('public')->delete($guru->foto_profil); } $path = $request->file('foto_profil')->store('foto_profil/guru', 'public'); $data['foto_profil'] = $path; $fotoUrl = Storage::url($path); } if (!empty($data)) { $guru->update($data); } return response()->json([ 'success' => true, 'message' => 'Profil berhasil diperbarui!', 'foto_url' => $fotoUrl ?? ($guru->foto_profil ? Storage::url($guru->foto_profil) : null), ]); } }