@extends('admin.layouts.master') @section('styles') @parent {{ HTML::style('assets/admin/vendor/multi-select/css/multi-select.css') }} @stop @section('content') @section('bodyClass') @parent hold-transition skin-blue sidebar-mini @stop
User Avatar

{{$user->name}}

{{$user->designation}}

Contact Information

  • {{$user->email}}
  • {{$user->phone_number}}

Date Joined

{{$user->getDateJoined()}}

User Status

@if($user->status==1)Verified @else Not Verified @endif

Profile Details

Nationality

{{$user->nationality->getData('country_name')}}

Country of residence

{{$user->residence->getData('country_name')}}

Gender

{{ucwords($user->user_gender)}}

Email

{{$user->email}}

Mobile Number

{{$user->phone_number}}
@if(!empty($user->languages))

Languages spoken

@foreach($user->languages as $language) {{$language->getData('lang_title')}} @endforeach
@endif @if(!empty($user->interest))

Category of Interest

@foreach($user->interest as $interest) {{$interest->getData('category_title')}} @endforeach
@endif

Award Applications

@if(!empty($user->awardApplication)) @foreach($user->awardApplication as $application)

{{$application->category->getData('category_title')}}

{{$application->subCategory->getData('category_title')}}

  • Title English : {{$application->award_title_english}}
  • Title Arabic : {{$application->award_title_arabic}}
View Details
@endforeach @endif
@stop @section('scripts') @parent @stop