@extends('layouts.app') @section('content')

{{ __('Profile Details') }}

Avatar
{{ auth()->user()->name }}
{{ __('Information') }}

{{ __('Email') }}

{{ __(':email', ['email' => auth()->user()->email]) }}

{{ __('Phone') }}

{{ __(':phone', ['phone' => auth()->user()->phone]) }}

{{ __('Gender') }}

{{ __(':gender', ['gender' => auth()->user()->gender]) }}

{{ __('Date of Birth') }}

{{ __(':date_of_birth', ['date_of_birth' => auth()->user()->date_of_birth]) }}

@endsection