@extends(HotelHelper::viewPath('customers.master')) @section('content')
{{ __('Name') }} : {{ auth('customer')->user()->name }}
@endif @if (auth('customer')->user()->email){{ __('Email') }} : {{ auth('customer')->user()->email }}
@endif @if (auth('customer')->user()->country){{ __('Country') }} : {{ auth('customer')->user()->country }}
@endif @if (auth('customer')->user()->city){{ __('City') }} : {{ auth('customer')->user()->city }}
@endif @if (auth('customer')->user()->zip){{ __('Postal / Zip code') }} : {{ auth('customer')->user()->zip }}
@endif{{ __('Date of birth') }} : {{ auth('customer')->user()->dob }}
@endif @if (auth('customer')->user()->phone){{ __('Phone') }} : {{ auth('customer')->user()->phone }}
@endif @if (auth('customer')->user()->state){{ __('State / Province') }} : {{ auth('customer')->user()->state }}
@endif @if (auth('customer')->user()->address){{ __('Address') }} : {{ auth('customer')->user()->address }}
@endif