@extends('layouts.home') @section('content') My Profile Manage your account information and preferences Back to Home Profile Overview @csrf @if ($user->profile_picture) @else @endif {{ Auth::user()->name }} {{ Auth::user()->email }} @csrf Logout @if (Auth::user()->customerInfo) Complete Profile @endif {{ Auth::user()->customerInfo ? Auth::user()->customerInfo->orders->count() : 0 }} Orders {{ Auth::user()->created_at->format('M Y') }} Member Since Personal Information Edit Profile @csrf Account Information Full Name * Email Address * Personal Details First Name * Last Name * Phone Number * Address Information Street Address * {{ Auth::user()->customerInfo->address ?? '' }} City * State/Province * {{-- --}} Select State/Province @php $states = [ 'Abu Dhabi', 'Dubai', 'Sharjah', 'Ajman', 'Umm Al Quwain', 'Ras Al Khaimah', 'Fujairah', ]; $selectedState = old( 'state', auth()->user()->customerInfo->state ?? '', ); @endphp @foreach ($states as $state) {{ $state }} @endforeach {{-- ZIP/Postal Code * --}} Country * United Arab Emirates Cancel Save Changes Security Settings @csrf Change Password Current Password New Password Confirm New Password Update Password @endsection
Manage your account information and preferences
{{ Auth::user()->email }}