Help us protect Louisiana's children. Call 1-855-4LA-KIDS (1-855-452-5437) toll-free, 24 hours a day, seven days a week.

Report Child Abuse & Neglect

Able-Bodied Adult Without Dependents (ABAWD)

This page has moved to the Louisiana Work’s website. Same service, different home.


As part of the statewide One Door transition, some programs are moving to better align services and improve access. Even if your program is moving to a new department, your benefits and services will continue without interruption.

Use the button below to go directly to your program’s new home.

View this site in another language:
// Get references to the buttons and dialogs const ExemptButton = document.getElementById('ExemptButton'); const ExemptDialog = document.getElementById('Exempt'); // Function to open a dialog function openDialog(dialog) { dialog.showModal(); } // Function to close a dialog function closeDialog(dialog) { dialog.close(); } // Add click event listeners to the buttons ExemptButton.addEventListener('click', () => { openDialog(ExemptDialog); }); // Add click event listeners to close buttons within the dialogs const ExemptCloseButton = ExemptDialog.querySelector('.x'); ExemptCloseButton.addEventListener('click', () => { closeDialog(ExemptDialog); }); // Get references to the buttons and dialogs const NonExemptButton = document.getElementById('Non-ExemptButton'); const NonExemptDialog = document.getElementById('Non-Exempt'); // Function to open a dialog function openDialog(dialog) { dialog.showModal(); } // Function to close a dialog function closeDialog(dialog) { dialog.close(); } // Add click event listeners to the buttons NonExemptButton.addEventListener('click', () => { openDialog(NonExemptDialog); }); // Add click event listeners to close buttons within the dialogs const NonExemptCloseButton = NonExemptDialog.querySelector('.x'); NonExemptCloseButton.addEventListener('click', () => { closeDialog(NonExemptDialog); });