Request for Support: Essential Items & Technology by Clients
At SOAR Outreach, our mission is to ensure that every member of our community has the tools and resources they need to thrive. We understand that times can be challenging, and we are here to help bridge the gap.
Please use the form below to request assistance with essential items. While we strive to fulfill every request, please note that distribution is based on current inventory and is first-come, first-served.
Items Available for Request
Please check the categories for which you are seeking support:
Youth Clothing & Shoes: (Gently used or new items for children and teens. Please specify sizes needed.)
Technology Devices: (Laptops, tablets, or iPads for educational or professional use.)
Terms and Conditions
By submitting this request, you acknowledge the following:
Availability: Submitting a request does not guarantee receipt of items. Technology devices, in particular, are subject to high demand and limited supply.
Usage: Technology devices are intended for educational, job-seeking, or essential personal use.
Condition: While we inspect all donations, clothing and technology are often “gently used” and provided in “as-is” condition.
Privacy: Your information is strictly confidential. We collect this data only to process your request and will never share your personal details with third parties without your explicit consent.
How to Receive Your Items
Please complete and submit the form below. Once your request is processed, a member of our team will contact you via email or phone within 1-3 business days to confirm availability and schedule a delivery.
Privacy Statement: We value your trust. All information provided in this form is used solely for the purpose of resource distribution and internal record-keeping.
document.addEventListener('DOMContentLoaded', function() {
// Only apply on mobile
function initMobileSubmenus() {
if (window.innerWidth > 1024) return;
document.querySelectorAll('.menu-item-has-children > a').forEach(link => {
// Remove previous click handlers to prevent duplicates
link.replaceWith(link.cloneNode(true));
});
document.querySelectorAll('.menu-item-has-children > a').forEach(link => {
link.addEventListener('click', function(e) {
e.preventDefault(); // prevent navigation
const submenu = this.nextElementSibling;
if (!submenu) return;
// Close any other open submenus
document.querySelectorAll('.menu-item-has-children .sub-menu.open').forEach(other => {
if (other !== submenu) {
other.classList.remove('open');
other.style.display = 'none';
}
});
// Toggle this submenu
if (submenu.classList.contains('open')) {
submenu.classList.remove('open');
submenu.style.display = 'none';
} else {
submenu.classList.add('open');
submenu.style.display = 'block';
}
});
});
}
initMobileSubmenus();
// Re-initialize on window resize in case user rotates device
window.addEventListener('resize', initMobileSubmenus);
});