{{ __('Reseller profile ') }}
  • {{ __('E-mail') }} {{ $user->email }}
  • {{ __('Company') }} {{ $user->company }}
  • {{ __('Address') }} {{ $user->address }}
  • {{ __('City') }} {{ $user->city }}
  • {{ __('Postcode') }} {{ $user->postcode }}
  • {{ __('Phone') }} {{ $user->phone }}
  • {{ __('Date of birth') }} {{ $user->birth }}
  • {{ __('Member since') }} {{ date('Y-m-d', strtotime($user->created_at)) }}
{{ __('Users') }}
@if(auth()->user()->can('edit-user')) @endif @foreach($users as $usr) @if(auth()->user()->can('edit-user')) @endif @endforeach
{{ __('Name') }} {{ __('Package') }} {{ __('Expire') }} {{ __('Status') }} {{ __('Due') }} {{ __('Action') }}
{{ $usr->name }} {{ $usr->subscription->package_name ?: '-' }} {{ date('Y-m-d', strtotime($usr->subscription->subscription_expires)) ?: '-' }} @if($usr->status === 1) {{ __('Active') }} @endif @if($usr->status === 2) {{ __('Expired') }} @endif @if($usr->status === 3) {{ __('Terminated') }} @endif @if($usr->due_amount($usr->id) === 0) {{ config('app.currency') . __(' ') . $usr->due_amount($usr->id) }} @endif @if($usr->due_amount($usr->id) !== 0) {{ config('app.currency') . __(' ') . $usr->due_amount($usr->id) }} @endif {{ __('Edit') }} {{ __('Renew') }} @if(!($usr->status == 3))
@csrf @method('PATCH')
@endif
@push('scripts')