@extends('layouts.app') @section('title', 'My Account') @section('content')
{{-- Sidebar --}} {{-- Main Content --}}
@if(isImpersonating())
You are impersonating a user
@csrf
@endif @if(session('success'))
{{ session('success') }}
@endif @yield('customer-content')
@endsection