@if($user->offline)

{{ trans('public.instructor_is_not_available') }}

{{ $user->offline_message }}

offline
@endif @if((!empty($educations) and !$educations->isEmpty()) or (!empty($experiences) and !$experiences->isEmpty()) or (!empty($occupations) and !$occupations->isEmpty()) or !empty($user->about)) @if(!empty($educations) and !$educations->isEmpty())

{{ trans('site.education') }}

@endif @if(!empty($experiences) and !$experiences->isEmpty())

{{ trans('site.experiences') }}

@endif @if(!empty($user->about))

{{ trans('site.about') }}

{!! nl2br($user->about) !!}
@endif @if(!empty($occupations) and !$occupations->isEmpty())

{{ trans('site.occupations') }}

@foreach($occupations as $occupation)
{{ $occupation->category->title }}
@endforeach
@endif @else @include(getTemplate() . '.includes.no-result',[ 'file_name' => 'bio.png', 'title' => trans('site.not_create_bio'), 'hint' => '', ]) @endif