@extends('layouts.admin') @section('title') Admin | Representative Details @endsection @section('content')

Representative

{{-- Block Button for Admin / Admin --}} @if(Auth::user()->hasAnyRole(['Admin','Admin']) && !$user->is_block && $user->hasAnyRole(['Admin','Representative','Attendee','Speaker']))
@csrf @method('PATCH')
@endif {{-- Unblock Button for Support Staff / Helpdesk --}} @if(Auth::user()->hasRole('Support Staff Or Helpdesk') && $user->is_block)
@csrf @method('PATCH')
@endif
Representative Details
  • Name: {{ $user->name }} {{ $user->lastname }}
  • User Name: {{ $user->username ?? '' }}
  • DOB: {{ $user->dob ? dateFormat($user->dob) : '' }}
  • Email: {{ $user->email }}
  • Designation: {{ $user->designation ?? '-' }}
  • Mobile: {{ $user->mobile ?? '' }}
  • Gender: {{ $user->gender ?? '' }}
  • Place: {{ $user->place ?? '' }}
  • Street: {{ $user->street ?? '' }}
  • Zipcode: {{ $user->zipcode ?? '' }}
  • City: {{ $user->city ?? '' }}
  • State: {{ $user->state ?? '' }}
  • Country: {{ $user->country ?? '' }}
  • Referral coupon: {{ $user->referral_coupon ?? '' }}
  • Tags: @if(!empty($user->tags)) @foreach(explode(',', $user->tags) as $tag) {{ trim($tag) }} @endforeach @else - @endif
@endsection