{{ __('User Details') }}

@if ($user->image) @else @endif

{{ html_decode($user->name) }}

@if ($user->phone)

{{ html_decode($user->phone) }}

@endif

{{ html_decode($user->email) }}

{{ __('Type') }} : {{ ucfirst($user->role) }}

{{ __('Joined') }} : {{ $user->created_at->format('h:iA, d M Y') }}

@if ($user->is_banned == 'yes')

{{ __('Banned') }} : {{ __('Yes') }}

@else

{{ __('Banned') }} : {{ __('No') }}

@endif @if ($user->email_verified_at)

{{ __('Email verified') }} : {{ __('Yes') }}

@else

{{ __('Email verified') }} : {{ __('None') }}

{{ __('Send Verify Link to Mail') }} @endif {{ __('Send Mail To User') }} @if ($user->is_banned == 'yes') {{ __('Remove Ban') }} @else {{ __('Ban User') }} @endif @if ($user->role != 'instructor') {{ __('Delete Account') }} @endif Login URL
{{-- profile information card area --}}
{{ __('Profile Information') }}
@csrf @method('PUT')
@if($user->role == 'instructor')
@endif
@if($user->role == 'company')
{{ __('Company Details') }}
@csrf @method('PUT')
@else {{-- change biography card area --}}
{{ __('Profile Biography') }}
@csrf @method('PUT')
@endif @if($user->role == 'instructor') {{-- change Education and experience card area --}}
{{ __('Experience and Education') }}
{{ __('Experience') }}
@forelse ($experiences as $experience) @empty @endforelse
{{ __('No') }} {{ __('Company') }} {{ __('Position') }} {{ __('Start Date') }} {{ __('End Date') }} {{ __('Action') }}

{{ $loop->iteration }}

{{ $experience->company }}

{{ $experience->position }}

{{ $experience->start_date }}

{{ $experience->current ? 'Present' : $experience->end_date }}

{{ __('No Data!') }}


{{ __('Education') }}
@forelse ($educations as $education) @empty @endforelse
{{ __('No') }} {{ __('Organization') }} {{ __('Degree') }} {{ __('Start Date') }} {{ __('End Date') }} {{ __('Action') }}

{{ $loop->iteration }}

{{ $education->organization }}

{{ $education->degree }}

{{ $education->start_date }}

{{ $education->current == 1 ||$education->end_date == null ? 'Present' : $experience->end_date }}

{{ __('No Data!') }}
@endif {{-- change cocation card area --}}
{{ __('Profile Location') }}
@csrf @method('PUT')
{{-- change socials card area --}}
{{ __('Profile Socials') }}
@csrf @method('PUT')
{{-- change password card area --}}
{{ __('Change Password') }}
@csrf @method('PUT')
{{-- banned history card area --}} @if ($banned_histories->count() > 0)
{{ __('Banned History') }}
@foreach ($banned_histories as $banned_history) @endforeach
{{ __('Subject') }} {{ __('Description') }}
{{ $banned_history->subject }} {!! clean(nl2br($banned_history->description)) !!}
@endif