input('theme'); try { $themeService->activate($themeSlug); return response()->json([ 'message' => 'Theme activated successfully.', 'active_theme' => $themeSlug, ]); } catch (Exception $e) { return response()->json(['message' => $e->getMessage()], 404); } } }