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

{{ __('Profile Information') }}

{{ $user->name }}

{{ $user->email }}

{{ ucwords(str_replace('_', ' ', $user->role)) }}

{{ $user->branch?->name ?? 'N/A' }}

@endsection