@extends('layouts.default') @section('title', ucwords(Auth::user()->name).' Profile') {{-- @section('new_button') edit Edit Profile @endsection --}} @section('content') @php $profile = $user->profile; @endphp
{{ asset('/theme/images/img.jpeg') }}
edit {{-- Click on the Image to change the Avatar --}} {{ csrf_field() }}
{{ ucwords($user->name) }}
{{ $user->display_name }}
mail_outline
{{ $user->email }}
call
{{ $user->mobile }}
location_on
{{ isset($user->city?->name)?ucwords($user->city?->name).', ':'' }}{{ isset($user->state?->name)?ucwords($user->state?->name).', ':'' }}{{ isset($user->country?->name)?ucwords($user->country?->name):'' }}

{{ ucwords(Auth::user()->name)}} Report Activity report

Latest Consultants joined in Job {{ date('Y') }}

@foreach($list as $consultant) @php $techs = ''; foreach ($consultant->technologies as $value) { $techs = $techs.' '.$technologies[$value->technology_id]; } @endphp @endforeach @if(count($list) == 0) @endif
Date Name Mobile Email Technologies Visa Type Status Creater Action
{{ Date::parse($consultant->created_at)->format(env('APP_DATE')) }} {{ ucwords($consultant->name) }} {{ $consultant->mobile }} {{ $consultant->email }} {{ Str::limit($techs, 15) }} {{ ucwords($consultant->visa_status) }} {{ $statuses[$consultant->status] }} @if(isset($consultant->creater?->name)) {{ ucwords($consultant->creater?->name) }} @endif create mail
No Data

Change Password

{{ Form::open(array('url' => 'change_password', 'id' => 'change_password_form', 'class' => 'form-horizontal form-label-left', 'data-toggle' => 'validator', 'role' => 'form', 'autocomplete' => 'off')) }}
Cancel
{{ csrf_field() }} {{ Form::close() }}
@stop