@extends('admin.layouts.app') @section('title', 'My Profile') @section('page-title', 'My Profile') @section('content')

Profile Information

Edit Profile
{{ substr($user->name, 0, 1) }}

{{ $user->name }}

{{ $user->email }}


{{ $user->name }}
{{ $user->email }}
#{{ $user->id }}
{{ $user->created_at->format('M d, Y') }}
{{ $user->updated_at->format('M d, Y H:i') }}
@if($user->email_verified_at) Verified @else Not Verified @endif

@endsection