@php /* The customer account sidebar belongs to the customer account. An owner reaches
this same screen from their billing page and gets the full width instead of a
nav that is not theirs. */
@endphp
@php $isCustomer = \App\Support\Auth::is('customer');
@endphp
@if ($isCustomer)
@partial('account-nav')
@endif
@partial('payment-methods', ['methods' => $methods, 'savable' => $savable, 'publicKey' => $publicKey ?? ''])