@extends('layouts.app') @section('title', 'Edit Staff') @section('content')
Update staff member role and team assignment
Name: {{ $staff->user->first_name }} {{ $staff->user->last_name }}
Email: {{ $staff->user->email }}
@elseEmail: {{ $staff->email ?? 'Pending' }}
Status: Pending Invitation
@endifCurrent Role: {{ ucfirst($staff->role) }}
@if($staff->user)Status: {{ ucfirst(str_replace('_', ' ', $staff->status)) }}
Created: {{ $staff->created_at->format('M d, Y') }}
@elseInvited: {{ $staff->invited_at ? $staff->invited_at->format('M d, Y') : 'N/A' }}
Attempts: {{ $staff->verification_attempts ?? 0 }}/3
@endif