@php $steps = [ [ 'icon' => 'users', 'title' => 'Create Profiles', 'description' => 'Organizations and individuals can create profiles for elderly people in need, sharing their stories and specific needs.', ], [ 'icon' => 'shield-check', 'title' => 'Admin Approval', 'description' => 'Our admin team reviews each profile to ensure the information is accurate and the needs are legitimate.', ], [ 'icon' => 'credit-card', 'title' => 'Receive Donations', 'description' => 'Donors can choose to support specific elderly individuals or contribute to our global fund for all elderly people.', ], [ 'icon' => 'hand-heart', 'title' => 'Provide Support', 'description' => '100% of donations go directly to supporting the elderly, providing them with care, resources, and dignity.', ], ]; @endphp

How It Works

Our platform connects donors with elderly individuals in need through a transparent, secure process.

@foreach($steps as $index => $step)
@if($step['icon'] === 'users') @elseif($step['icon'] === 'shield-check') @elseif($step['icon'] === 'credit-card') @elseif($step['icon'] === 'hand-heart') @endif

{{ $step['title'] }}

{{ $step['description'] }}

@endforeach