@extends('admin.layouts.app')
@section('title', 'Profile')
@section('page-title', 'My Profile')
@section('page-title-jp', 'マイプロフィール')
@section('content')
@if ($message = Session::get('success'))
{{ $message }}
@endif
{{ strtoupper(substr($user->name, 0, 1)) }}
{{ $user->name }}
{{ $user->email }}
Account Information
{{ $user->name }}
{{ $user->email }}
{{ $user->created_at->format('M d, Y') }}
{{ $user->updated_at->format('M d, Y H:i') }}
@endsection