@extends('admin.layouts.app') @section('title', __('dashboard.user_details')) @section('content')
@if($user->image) @else @endif

{{ $user->name }}

{{ $user->email ?? '--' }}

{{ $user->phone ?? '--' }}

{{ $user->is_active ? __('dashboard.active') : __('dashboard.inactive') }} @if($user->email_verified_at) {{ __('dashboard.verified') }} @else {{ __('dashboard.not_verified') }} @endif
{{ __('dashboard.general_info') }}
{{ __('dashboard.edit') }}
@csrf @method('DELETE')
{{ $ordersDataTable->table(['class' => 'table table-bordered table-striped dt-responsive nowrap w-100']) }}
{{ $reviewsDataTable->table(['class' => 'table table-bordered table-striped dt-responsive nowrap w-100']) }}
{{ $wishlistsDataTable->table(['class' => 'table table-bordered table-striped dt-responsive nowrap w-100']) }}
@endsection @push('scripts') {{ $ordersDataTable->scripts() }} {{ $reviewsDataTable->scripts() }} {{ $wishlistsDataTable->scripts() }} @endpush