@extends('front.layouts.master')
@section('title', isset($title) ? $title : 'Home')
@section('description', isset($description) ? $description : '')
@section('keywords', isset($keywords) ? $keywords : '')
@section('content')
@include('front.layouts.include.user_profile_sidebar', ['menu' => 'profile'])
{{__('Personal Information')}}
- {{__('Name:')}} {{$user->name}}
- {{__('Date Of Birth:')}} {{is_null($user->DOB) ? __('N/A') : $user->DOB}}
- {{__('Gender:')}} {{is_null($user->Gender) ? __('N/A') : $user->Gender}}
{{__('Address & Contact Us')}}s
- {{$user->email}}
- {{is_null($user->street_address) ? __('Not to update yet') : $user->street_address}}
{{__('Default Billing Address')}}
- {{$user->email}}
- {{is_null($user->street_address) ? __('Not to update yet') : $user->street_address}}
@endsection