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

{{ __('Hesabım') }}

@if ( session('success') )
{{ __('Başarılı') }}

{{ __('İşleminiz başarıyla gerçekleştirildi.') }}

@endif @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @yield('user.content')
{{ __('Hesabım') }}
@endsection @section('footer') @yield('user.footer') @endsection