@extends('admin.layout.app') @section('title', 'Engineer Profile') @section('content')
Profile Picture

{{ $user->full_name }}

{{ $user->email }}

{{ $user->phone ?? 'N/A' }}

@if($user->latestLocation) {{ $user->latestLocation->address_line }} {{ $user->latestLocation->city }} {{ $user->latestLocation->state }} {{ $user->latestLocation->postal_code }} {{ $user->latestLocation->country }} @else No address information available. @endif

Personal & Professional Information
First Name: {{ $user->first_name }}
Last Name: {{ $user->last_name }}
Date of Birth: {{ $user->date_of_birth ? \Carbon\Carbon::parse($user->date_of_birth)->format('d M Y') : 'N/A' }}
Company Name: {{ $user->company_name ?? 'N/A' }}
Has License: {{ ucfirst($user->has_license ?? 'No') }}
Has Car: {{ ucfirst($car ? 'Yes' : 'No') }}

Bank Details
@if($user->bankDetail)
Account Title: {{ $user->bankDetail->account_title }}
Bank Name: {{ $user->bankDetail->bank_name }}
Bank Address: {{ $user->bankDetail->bank_address }}
IBAN: {{ $user->bankDetail->iban_number }}
BIC: {{ $user->bankDetail->bic_swift }}
Paypal/Email: {{ $user->bankDetail->paypal_or_email }}
@else

No bank details provided.

@endif
Documents
  • CV @if($cv) View @else Not uploaded @endif
  • ID Card @if($idCard) View @else Not uploaded @endif
  • Driving License @if($drivingLicense) View @else Not uploaded @endif
@endsection