@extends('Common::admin.layout.page') @section('page')
| {{ __('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') }} |