@yield('css') @laravelPWA
@include('partials.navbar') @include('partials.sidebar')
@if (Session::has('error'))
×
{{ Session::get('error') }}
@endif @if (Session::has('success'))
×
{{ Session::get('success') }}
@endif @if (count($errors) > 0)
@foreach ($errors->all() as $message)
{{ $message }}
@endforeach
@endif
@yield('card-icon')
@yield('card-title')
@yield('content')
@include('partials.footer')
{{-- PLUGINS --}} @stack('plugins') @yield('scripts')