@extends('site.layout') @section('content')
@if ($customer->avatar_path) @else @endif
{{ $customer->name }}
Phone: {{ $customer->phone ?? '-' }}
@if ((float) $customer->refer_balance > 0)
Refer Balance: {{ number_format((float) $customer->refer_balance, 2) }}
@endif
Edit profile
@csrf @php($showBank = (float) $customer->refer_balance > 0 || $customer->bank_name || $customer->bank_account_name || $customer->bank_account_number || $customer->bank_branch || $customer->bank_routing_number)
@if ($customer->avatar_path) @else @endif
@if ($customer->avatar_path) @endif
@if ($showBank)
Bank info
@endif
Cancel
@endsection