@section('header_title', 'My Picks')

My Picks

People you have liked. Waiting for them to swipe back to become Friends!

@if($picks->count() > 0)
@foreach($picks as $user)

{{ $user->name }}

{{ $user->location ?? 'Unknown location' }}

Pending Request...
@endforeach
@if($picks->hasPages())
{{ $picks->links() }}
@endif @else

No Picks Yet

You haven't liked anyone yet. Head over to the Discover page and start swiping to find your matches!

Start Discovering
@endif