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

{{ $user->full_name }}

{{ ucfirst(str_replace('_', ' ', $user->user_type)) }}

{{ $user->email }}

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

Back to Engineers
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') }}
Priority: {{ ucfirst($user->user_priority ?? 'Normal') }}

Rates
Hourly: €{{ number_format($user->agreed_rate_hourly, 2) ?? 'N/A' }}
Half Day: €{{ number_format($user->agreed_rate_half_day, 2) ?? 'N/A' }}
Full Day: €{{ number_format($user->agreed_rate_full_day, 2) ?? 'N/A' }}
Travel Cost Type: {{ ucfirst($user->travel_cost_type ?? 'N/A') }}
Agreed Travel Cost: €{{ number_format($user->agreed_travel_cost, 2) ?? '0.00' }}

Notes

{{ $user->notes ?? 'No additional notes.' }}

Address Information
@if($user->latestLocation)

Address: {{ $user->latestLocation->address_line }}

City: {{ $user->latestLocation->city }}

State: {{ $user->latestLocation->state }}

Postal Code: {{ $user->latestLocation->postal_code }}

Country: {{ $user->latestLocation->country }}

@else

No address information available.

@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
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
@endsection