HEX
Server: Apache
System: Linux server2.voipitup.com.au 4.18.0-553.109.1.lve.el8.x86_64 #1 SMP Thu Mar 5 20:23:46 UTC 2026 x86_64
User: posscale (1027)
PHP: 8.2.30
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/posscale/www/printmanager/resources/views/filament/widgets/account-widget.blade.php
@php
$user = filament()->auth()->user();
@endphp

<x-filament-widgets::widget class="">
    <x-filament::section class="!bg-gradient-to-r from-[#4d8cff] to-[#6c9dfcb0] to-100%  h-full">
        <div class="flex flex-col items-justify gap-y-3 h-full">
            <div class="flex items-center gap-x-3">
                <x-filament-panels::avatar.user size="lg" :user="$user" class="bg-white border-2 w-[60px] h-[60px] mb-5" />

                <div class="flex-1 flex-column">
                    <h2
                        class="grid flex-1 text-base font-semibold leading-6 text-white dark:text-white">
                        {{ __('filament-panels::widgets/account-widget.welcome', ['app' => config('app.name')]) }}
                    </h2>

                    <p class="text-sm text-white ">
                        {{ filament()->getUserName($user) }}
                    </p>
                </div>
            </div>

            <form
                action="{{ filament()->getLogoutUrl() }}"
                method="post"
                class="my-auto">
                @csrf
                <button type="submit" class="w-1/2 text-white border-2 rounded-full p-2 text-center cusrsor-pointer font-bold hover:bg-white hover:text-black hover:border-white">{{ __('filament-panels::widgets/account-widget.actions.logout.label') }}</a>
              
            </form>
        </div>
    </x-filament::section>
</x-filament-widgets::widget>