91³Ô¹ÏÍø

Watch CBS News

Education Department tells 7.5 million student loan borrowers in "illegal" SAVE plan to prepare for repayment

More than 7 million student loan borrowers who have been enrolled in a Biden-era repayment plan will receive notices beginning Friday with instructions to seek a new plan to repay their debt, the Education Department said.

Borrowers enrolled in the SAVE plan, which was struck down by a federal court earlier this month, have been in forbearance since July 2024 as a legal battle played out in courts. Starting July 1, loan servicers will begin issuing notices giving borrowers 90 days to select a new repayment plan.

The available repayment plans will mean higher monthly payments for most of those borrowers.

The Education Department called the plan "illegal," and said in a statement Friday it's based on "the false promise of student loan forgiveness and artificially low monthly payments." 

"Today's guidance, which every borrower enrolled in the defunct SAVE Plan will receive over the next week, puts the Biden Administration's illegal student loan bailout agenda to rest once and for all," Under Secretary of Education Nicholas Kent said in a statement. "For years, borrowers have been caught in a confusing cycle of uncertainty, but the Trump Administration's policy is simple: if you take out a loan, you must pay it back. 

When Alexis Arredondo graduated from the University of California, Los Angeles, in 2024 with a degree in microbiology, he struggled to find full-time work in research or public health. Instead, he began working part-time and freelancing for nonprofits in Southern California.

A first-generation college student, he took on roughly $40,000 in student debt and enrolled in the SAVE plan upon graduation. Now, he said, he has to choose between paying more per month, which would be a struggle to afford, or a longer repayment period, which would increase how much he pays in interest.

"It's very difficult knowing where I'm going to be to able to get this money from," he told The Associated Press.

The SAVE plan was among several initiatives launched by former President Joe Biden, a Democrat, to reduce Americans' student debt burden.

The SAVE plan provided more lenient terms than other repayment plans, reducing loan payments to as little as 5% of a borrower's discretionary income and offering forgiveness for borrowers who made payments for at least 10 years and originally borrowed $12,000 or less.

While the court challenges played out, borrowers enrolled in the plan have not been required to make payments. But debt balances began accruing interest following a court ruling last summer that blocked implementation of the SAVE plan, meaning some students will see increases in the amount they owe.

Borrowers have felt whiplash as the challenges to the SAVE plan worked their way through court, said Mike Pierce, executive director of the Student Borrower Protection Center.

"Over and over again, education officials of both parties made promises about fixing the broken student loan system and called student debt a crisis," he told The Associated Press. "And yet today, these same borrowers are being told it's time to pay and you have no good options."

Starting July 1, the Education Department said that a new income-driven repayment plan called the Repayment Assistance Plan will be an option for borrowers. The plan ties monthly payments based on a borrower's income and number of dependents with fixed terms and timelines between 10 and 25 years to repay. 

Last year, the Trump administration and Congress made several changes to student loan repayment options that will take effect over the next two years. For one, new student loans will no longer have the option of deferment because of unemployment or economic hardship.

"You're talking about a pressing current affordability crisis, and you took away the most affordable plan option," said Alexander Lundrigan, policy and advocacy manager at Young Invincibles, an advocacy group.

Earlier this month, the U.S. Court of Appeals for the 8th Circuit struck down the SAVE plan. The Education Department's notices to borrowers beginning Friday will direct them to enroll in a plan and resume making payments as soon as this summer.

Borrowers will be contacted by their loan servicers in stages, with a new group receiving word every two weeks. Those who had been enrolled in the SAVE plan the longest will be the first to receive notices.

View CBS News In
CBS News App Open
Chrome Safari Continue
const link = doc.createElement('link'); link.rel = 'stylesheet'; link.href = '/fly/fly/bundles/cbsnewscontent/css/cmp-banner.min.css?v=50747257b890e014813016b79ece0fb2'; doc.head.appendChild(link); doc.body.innerHTML = CONSENT_MESSAGE; } else { el.insertAdjacentHTML('afterend', CONSENT_MESSAGE); } }); } function hidePrivacyMessage() { // Remove from the main document document.querySelectorAll(`.${CONSENT_MESSAGE_CLASS}`).forEach(el => el.remove()); // Remove from inside any iframes document.querySelectorAll('iframe').forEach(iframe => { const doc = iframe.contentDocument || iframe.contentWindow.document; doc.querySelectorAll(`.${CONSENT_MESSAGE_CLASS}`).forEach(el => el.remove()); }); } function activateGatedScripts() { // Handle both new format (cmp-gated-script) and old OneTrust/Ketch format (optanon-category-4) const gatedScripts = Array.from(document.querySelectorAll('script.cmp-gated-script, script.optanon-category-4')); // Activate scripts sequentially with a small delay to avoid timing issues let delay = 0; gatedScripts.forEach(function(placeholder, index) { setTimeout(function() { // Skip if already processed if (placeholder.hasAttribute('data-cmp-processed')) { return; } placeholder.setAttribute('data-cmp-processed', 'true'); const newScript = document.createElement('script'); newScript.type = 'text/javascript'; // Try new format first (data-cmp-src), then fall back to old format (data-src) const src = placeholder.getAttribute('data-cmp-src') || placeholder.getAttribute('data-src'); if (src) { newScript.src = src; } else if (placeholder.textContent) { // Inline script - just copy the content newScript.textContent = placeholder.textContent; } // Handle new format attributes (data-cmp-attrs) - for both inline and external scripts const attrs = placeholder.getAttribute('data-cmp-attrs'); if (attrs) { const tempDiv = document.createElement('div'); tempDiv.innerHTML = '
<\/div>'; const tempAttrs = tempDiv.firstChild.attributes; for (let i = 0; i < tempAttrs.length; i++) { // For external scripts, allow defer/async. For inline scripts, skip them (not valid) if (src || (tempAttrs[i].name !== 'async' && tempAttrs[i].name !== 'defer')) { newScript.setAttribute(tempAttrs[i].name, tempAttrs[i].value); } } } // Copy other attributes from old OneTrust format for (let i = 0; i < placeholder.attributes.length; i++) { const attr = placeholder.attributes[i]; // Skip attributes we've already handled or don't want to copy if (!['class', 'data-src', 'data-type', 'data-cmp-src', 'data-cmp-attrs', 'data-cmp-processed', 'type', 'async', 'defer', 'src'].includes(attr.name)) { newScript.setAttribute(attr.name, attr.value); } } placeholder.parentNode.replaceChild(newScript, placeholder); // If external script, manually trigger window.onload handlers after it loads // This handles widgets that use window.onload for initialization if (src) { newScript.addEventListener('load', function() { // If page already loaded and script set a new onload handler, trigger it if (document.readyState === 'complete' && window.onload) { const originalOnload = window.onload; window.onload = null; // Clear temporarily to prevent loops originalOnload(); // Execute the handler } }); } }, delay); delay += 500; // 500ms delay between each script to allow full loading }); } cbsoptanon.onScriptsReady(function(cmp) { cmp.ot.targetingAllowed(function(allowed) { if (!allowed) { showPrivacyMessage(); } else { activateGatedScripts(); } }); cmp.ot.awaitInitialConsent(function(consent_model) { cmp.ot.addOnConsentChangedHandler(function() { cmp.ot.targetingAllowed(function(allowed) { if (allowed) { hidePrivacyMessage(); activateGatedScripts(); } else { showPrivacyMessage(); } }); }); }); });