@extends('layouts.admin.app') @section('page-title') {{ __('Clients') }} @endSection @section('page-nav-title')

{{ __('Clients') }}

{{ __('All Clients') }}

@endsection @section('content') @include('includes.dialog')
@csrf {{ __('Export As Excel') }}
{{ __('Create client') }}
@foreach ($clients as $key => $client) @endforeach
{{ __('ID') }} {{ __('Details') }} {{ __('Company Name') }} {{ __('Responsible Name') }} {{ __('User Name') }} {{ __('Phone Number') }} {{ __('Email') }} {{ __('Login Info Delivery Way') }} {{ __('User Type') }} {{ __('Payment Method') }} {{ __('Verified') }} {{ __('account-number') }} {{ __('Activation') }}
{{ ++$key }} {{ __('View') }} {{ $client->company_name }} {{ $client->responsible_name }} {{ $client->user_name }} {{ $client->phone_number }} {{ $client->email }} {{ $client->userWayDeliverPasswordAttributes() }}
@error('user_type')
{{ $message }}
@enderror
@error('payment')
{{ $message }}
@enderror
@if ($client->userWayDeliverPasswordAttributes() == 'Email') {{ __('Activation - Email') }} @else {{ __('Activation - Whatsapp') }} @endif
@endsection @section('scripts') @if (session()->has('technician_register_info')) @endif @endsection