@extends(EcommerceHelper::viewPath('customers.master')) @section('content')

{{ __('Account information') }}

{{ __('Name') }}: {{ $customer->name }}
@if ($customer->dob)
{{ __('Date of birth') }}: {{ $customer->dob }}
@endif
{{ __('Email') }}: {{ $customer->email }}
@if ($customer->phone)
{{ __('Phone') }}: {{ $customer->phone }}
@endif
@endsection