@extends('Common::admin.layout.page') @section('page')

{{ __('show user') }}

@if($user->type != \App\Enum\UserType::SUPERVISOR) @endif
{{ __('name') }} {{ $user->name }}
{{ __('mobile') }} {{ $user->mobile }}
{{ __('Email') }} {{ $user->email }}
{{ __('Location in playground') }} {{ $user->location?->name }}
{{ __('is couching') }} {{ $user->type == \App\Enum\UserType::COACH ? __('Yes') : __('No') }}
{{ __('Profile Image') }} @if ($user->image) عرض المرفق @endif
{{ __('is blocked') }} {{ !$user->status ? __('Yes') : __('No') }}
@stop