@extends(get_view('index')) @section('title', (($title ?? '') . ' - ')) @section('header') @yield('user.header') @endsection @section('content')

@yield('user.title', __('Kullanıcı'))

{{ __('Merhaba') }}, {{ Auth::user()->name }}
{{ __('Üyelik Tarihi') }}: {{ Auth::user()->created_at->format('d M Y') }}
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@else @if (session('success'))
{{ __('İşlem Başarılı!') }} {{ session('success') }}
@elseif(session('error'))
{{ __('Hata!') }} {{ session('error') }}
@endif @endif @yield('user.content')
{{ __('Hesabım') }}
@endsection @section('footer') @yield('user.footer') @endsection