@extends('layouts.app') @push('title') {{ __('Profile View') }} @endpush @section('content')

{{ __('Alumni Profile View') }}

{{ $user->name }}
@if (!$user->currentMembership == null)
@endif

{{ $user->name }}

{{ $user->alumni?->company_designation }}

    @if($user->alumni?->facebook_url != NULL && $user->alumni?->facebook_url != '')
  • @endif @if($user->alumni?->twitter_url != NULL && $user->alumni?->twitter_url != '')
  • @endif @if($user->alumni?->linkedin_url != NULL && $user->alumni?->linkedin_url != '')
  • @endif @if($user->alumni?->instagram_url != NULL && $user->alumni?->instagram_url != '')
  • @endif
    @if($user->show_phone_in_public == STATUS_SUCCESS)
  • {{ $user->mobile }}

  • @endif @if($user->show_email_in_public == STATUS_SUCCESS)
  • {{ $user->email }}

  • @endif

{{ __('Profile Bio') }}

{!! $user->alumni?->about_me !!}

  • {{ __('Full Name') }} :

    {{ $user->name }}

  • {{ __('Nick Name') }} :

    {{ $user->nick_name }}

  • @if($user->show_email_in_public == STATUS_SUCCESS)
  • {{ __('Email') }} :

    {{ $user->email }}

  • @endif @if($user->show_phone_in_public == STATUS_SUCCESS)
  • {{ __('Phone') }} :

    {{ $user->mobile }}

  • @endif @if($regForm->enable_batch)
  • {{ __('Batch') }} :

    {{ $user->alumni?->batch?->name }}

  • @endif @if($regForm->enable_department)
  • {{ __('Department') }} :

    {{ $user->alumni?->department?->name }}

  • @endif @if($regForm->enable_passing_year)
  • {{ __('Passing Year') }} :

    {{ $user->alumni?->passing_year?->name }}

  • @endif @if($regForm->enable_role_number)
  • {{ __('Roll Number') }} :

    {{ $user->alumni?->id_number }}

  • @endif @if($regForm->enable_blood_group)
  • {{ __('Blood Group') }} :

    {{ $user->alumni?->blood_group }}

  • @endif @if($regForm->enable_date_of_birth)
  • {{ __('Date of Birth') }} :

    {{ $user->alumni?->date_of_birth }}

  • @endif @if($regForm->enable_gender)
  • {{ __('Gender') }} :

    {{ $user->alumni?->gender }}

  • @endif
  • {{ __('City') }} :

    {{ $user->alumni?->city }}

  • {{ __('State') }} :

    {{ $user->alumni?->state }}

  • {{ __('Country') }} :

    {{ $user->alumni?->country }}

  • {{ __('Zip Code') }} :

    {{ $user->alumni?->zip }}

  • @if ($regForm->enable_attachment && auth()->user()->role == USER_ROLE_ADMIN)
  • {{ __('Attachment') }} :

    {{__('View')}}
  • @endif @if ($user->alumni?->custom_fields) @foreach(json_decode($user->alumni?->custom_fields ?? []) as $dynamicField)
  • {{ __($dynamicField->label) }} :

    {{implode(',', $dynamicField->userData)}}

  • @endforeach @endif

{{ __('Educational Info') }}

@forelse ($user->institutions as $institute)

{{ $institute->degree }}

  • {{ __('Institute') }} :

    {{ $institute->institute }}

  • {{ __('Passing Year') }} :

    {{ $institute->passing_year }}

@empty

{{ __('No Educational Info Found') }}

@endforelse

{{ __('Professional Info') }}

  • {{ __('Company Name') }} :

    {{ $user->alumni?->company }}

  • {{ __('Designation') }} :

    {{ $user->alumni?->company_designation }}

  • {{ __('Office Address') }} :

    {{ $user->alumni?->company_address }}

@endsection