@extends('site.layout.layout') @section('title',__('My Account')) @section('content')

{{ __('Profile') }}

{{ __('View and edit account details') }}

{{ __('Name') }}

{{ auth()->user()->name }}
@csrf @method('PUT')

{{ __('Mobile') }}

{{ auth()->user()->country_code }} {{ auth()->user()->mobile }}
@csrf @method('PUT')

{{ __('E-mail') }}

{{ auth()->user()->email }}
@csrf @method('PUT')
@endsection @push('scripts') @endpush