@extends('shop::customers.account.index')
@section('page_title')
{{ __('shop::app.customer.account.profile.index.title') }}
@endsection
@section('account-content')
{!! view_render_event('bagisto.shop.customers.account.profile.view.before', ['customer' => $customer]) !!}
{!! view_render_event('bagisto.shop.customers.account.profile.view.table.before', ['customer' => $customer]) !!}
{{ __('shop::app.customer.account.profile.fname') }} |
{{ $customer->first_name }} |
{!! view_render_event('bagisto.shop.customers.account.profile.view.table.first_name.after', ['customer' => $customer]) !!}
{{ __('shop::app.customer.account.profile.lname') }} |
{{ $customer->last_name }} |
{!! view_render_event('bagisto.shop.customers.account.profile.view.table.last_name.after', ['customer' => $customer]) !!}
{{ __('shop::app.customer.account.profile.gender') }} |
{{ __($customer->gender) }} |
{!! view_render_event('bagisto.shop.customers.account.profile.view.table.gender.after', ['customer' => $customer]) !!}
{{ __('shop::app.customer.account.profile.dob') }} |
{{ $customer->date_of_birth }} |
{!! view_render_event('bagisto.shop.customers.account.profile.view.table.date_of_birth.after', ['customer' => $customer]) !!}
{{ __('shop::app.customer.account.profile.email') }} |
{{ $customer->email }} |
|
{!! view_render_event('bagisto.shop.customers.account.profile.view.table.after', ['customer' => $customer]) !!}
{!! view_render_event('bagisto.shop.customers.account.profile.view.after', ['customer' => $customer]) !!}
@endsection