@extends(Theme::getThemeNamespace('layouts.master')) @section('head') @if (BaseHelper::isRtlEnabled()) @endif @stop @section('body')
@if ($user = auth('lm_customer')->user())
{{ $user->name }}

{{ __('Hello') }}, {{ $user->name }}

{{ __('Joined on :date', ['date' => $user->created_at->translatedFormat('M d, Y')]) }}
@endif
@include(Theme::getThemeNamespace('layouts.partials.menu'))

{{ PageTitle::getTitle(false) }}

@hasSection('content') @yield('content') @else {!! Theme::content() !!} @endif
@stop @push('footer') @endpush