@props(['user'])
{{-- Email verified --}}
@if($user->email_verified_at)
✓ Email
@else
✗ Unverified
@endif
{{-- KYC --}}
@if($user->kyc_status == 1)
✓ KYC
@elseif($user->kyc_status == 2)
⏳ KYC Pending
@else
✗ No KYC
@endif
{{-- Store activated --}}
@if($user->activated == 1)
✓ Store
@endif
{{-- Active bots --}}
@if(isset($user->active_bots) && $user->active_bots > 0)
🤖 {{ $user->active_bots }} bot{{ $user->active_bots > 1 ? 's' : '' }}
@endif
{{-- Banned --}}
@if($user->status == 0)
🚫 Banned
@endif