@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]) !!} {!! view_render_event('bagisto.shop.customers.account.profile.view.table.first_name.after', ['customer' => $customer]) !!} {!! view_render_event('bagisto.shop.customers.account.profile.view.table.last_name.after', ['customer' => $customer]) !!} {!! view_render_event('bagisto.shop.customers.account.profile.view.table.gender.after', ['customer' => $customer]) !!} {!! view_render_event('bagisto.shop.customers.account.profile.view.table.date_of_birth.after', ['customer' => $customer]) !!} {!! view_render_event('bagisto.shop.customers.account.profile.view.table.after', ['customer' => $customer]) !!}
{{ __('shop::app.customer.account.profile.fname') }} {{ $customer->first_name }}
{{ __('shop::app.customer.account.profile.lname') }} {{ $customer->last_name }}
{{ __('shop::app.customer.account.profile.gender') }} {{ __($customer->gender) }}
{{ __('shop::app.customer.account.profile.dob') }} {{ $customer->date_of_birth }}
{{ __('shop::app.customer.account.profile.email') }} {{ $customer->email }}
@csrf

{{ __('shop::app.customer.account.address.index.enter-password') }}

@{{ errors.first('password') }}
{!! view_render_event('bagisto.shop.customers.account.profile.view.after', ['customer' => $customer]) !!}
@endsection