unioil-cms-fe/resources/views/livewire/profile/profile.blade.php

26 lines
1.1 KiB
PHP

<!-- profile/profile.blade.php -->
<div>
{{-- Top Nav --}}
@include('livewire.profile.top-nav.profile')
<div class="mt-10">
<div class="flex items-center space-x-4 px-5 py-10 bg-gray-300">
<x-heroicon-s-user-circle class="w-[120px] h-[120px] mr-5 text-gray-500"/>
<h3 class="text-5xl font-semibold text-gray-800">LBTek Systems</h3>
</div>
<div class="text-xl px-5 bg-white">
<div>
<h4 class="font-bold mb-5">My Information</h4>
<p><span class="font-semibold">Username:</span> lbteksupport</p>
<p><span class="font-semibold">Email:</span> <a href="mailto:support@lbteksystems.com"
class="text-blue-600 hover:underline">support@lbteksystems.com</a></p>
</div>
<div>
<h4 class="font-bold mt-10">Access Role</h4>
<p><span class="font-semibold">Role:</span> System Admin</p>
</div>
</div>
</div>
</div>