@extends('layouts.main') @section('title', 'Edit User') @section('content')
| Status: | @if($user->email_verified_at) Verified @else Pending Verification @endif |
| Role: | @if($user->roles->count() > 0) @foreach($user->roles as $role) {{ ucfirst(str_replace('-', ' ', $role->slug)) }} @endforeach @else No role assigned @endif |
| Created: | {{ $user->created_at->format('M d, Y \a\t g:i A') }} |
| Last Updated: | {{ $user->updated_at->format('M d, Y \a\t g:i A') }} |