@extends('layouts.app') @section('content')

User Profile

Profile Details

Name:
{{ $admin->name }}
Email:
{{ $admin->email }}
Role:
{{ ucfirst($admin->role) }}
Department:
{{ ucfirst($admin->department ?? 'N/A') }}
Status:
{{ ucfirst($admin->status) }}
Last Login:
{{ $lastLogin }}

Associated Properties

@if ($properties->isEmpty())

No properties associated with this user.

@else @foreach ($properties as $property) @endforeach
Address Beds Baths Square Footage Lot Size Year Built
{{ $property->address }} {{ $property->beds }} {{ $property->baths }} {{ $property->square_footage }} {{ $property->lot_size }} {{ $property->year_built }}
@endif

Actions

@endsection