@extends('layouts.master') @section('title',trans('dashboard.users_verification')) @section('css') @endsection @section('page-content')
@if (count($errors) > 0) @foreach ($errors->all() as $error) @endforeach @endif @if (session()->has('add')) @endif @if (session()->has('edit')) @endif @if (session()->has('delete')) @endif
@foreach($pending_users as $user) @endforeach
# @lang('dashboard.username') @lang('dashboard.mobile') @lang('dashboard.account_type') @lang('dashboard.category') @lang('dashboard.document_type') @lang('dashboard.country') @lang('dashboard.image') @lang('dashboard.operations')
{{$user->id}} {{ ($user->user)? $user->user->name: ''}} {{$user->mobile}} {{$user->account_type}} {{$user->category}} {{$user->document_type}} @if($user->country) {{Illuminate\Support\Facades\App::getLocale()=='ar'? $user->country->name_ar:$user->country->name_en}} @else {{' '}} @endif
{{($user->user)?$user->user->name: ' '}}
@lang('dashboard.verify') @lang('dashboard.unverify')
@endsection @section('js') @endsection