@stack('styles')
SOFT Paste
@auth @if(auth()->user()->is_admin)
Admin Panel
@endif
My Dashboard
{{ auth()->user()->name }}
@if(auth()->user()->avatar)
@else
{{ substr(auth()->user()->name, 0, 1) }}
@endif
@csrf
@else
Log In
@endauth
@auth
@if(auth()->user()->avatar)
@else
{{ substr(auth()->user()->name, 0, 1) }}
@endif
{{ auth()->user()->name }}
@if(auth()->user()->is_admin)
Admin Panel
@endif
My Dashboard
@csrf
Log Out
@else
Log In
@endauth
@yield('content')
200" @click="window.scrollTo({top: 0, behavior: 'smooth'})" x-show="show" x-transition:enter="transition ease-out duration-300" x-transition:enter-start="opacity-0 translate-y-4" x-transition:enter-end="opacity-100 translate-y-0" x-transition:leave="transition ease-in duration-300" x-transition:leave-start="opacity-100 translate-y-0" x-transition:leave-end="opacity-0 translate-y-4" class="fixed bottom-6 right-6 md:bottom-8 md:right-8 z-40 p-3 bg-indigo-600 hover:bg-indigo-700 text-white rounded-xl shadow-lg shadow-indigo-500/30 dark:shadow-indigo-900/40 transition-colors focus:outline-none focus:ring-4 focus:ring-indigo-500/20 group" aria-label="Back to top" style="display: none;" >
@stack('scripts') @guest @endguest @if (session('status') || session('success'))
{{ session('status') ?? session('success') }}
Close
@endif