@yield("custom_styles")
@include('dashboard.client.layouts.menu')

@yield('title','Panel')

@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @if (session()->has('success'))
  • {{ session('success') }}
@endif @yield('content')
{{----}} @yield("custom_scripts")