@include('tenant_layouts.header')
@include('tenant_layouts.navbar')
@include('tenant_layouts.topbar')
Dashboard
/
Account
/
@if(session()->has('message'))
{{ session()->get('message') }}
@endif
@if(Auth::user()->image)
@else
@endif
User name
{{Auth::user()->username}}
Password
*****************
Account ID
{{Auth::user()->unique_id}}
Personal Information
Edit
First name
{{Auth::user()->first_name}}
Last name
{{Auth::user()->last_name}}
Phone
{{Auth::user()->phone}}
Email
{{Auth::user()->email}}
Address
{{Auth::user()->address}}
Zipcode
{{Auth::user()->zipcode}}
City
{{Auth::user()->city}}
State
{{Auth::user()->state}}
Country
{{Auth::user()->country}}
@include('tenant_layouts.footer')
@include('tenant_layouts.script')