SIPDAM/samooapk/laravel/resources/views/profile/index.blade.php

47 lines
1.5 KiB
PHP

@extends('layouts.app')
@section('title', 'Profile')
@section('page-title', 'Profile')
@section('content')
<div class="row">
<div class="col-lg-4">
<div class="stat-card text-center">
<div class="mb-3">
<div class="user-avatar mx-auto" style="width: 80px; height: 80px; font-size: 2rem;">
<i class="fas fa-user"></i>
</div>
</div>
<h4>Admin User</h4>
<p class="text-muted">Administrator</p>
<a href="{{ route('profile.edit') }}" class="btn btn-primary">
<i class="fas fa-edit me-2"></i>Edit Profile
</a>
</div>
</div>
<div class="col-lg-8">
<div class="stat-card">
<h5 class="mb-3">Profile Information</h5>
<div class="row">
<div class="col-md-6">
<strong>Full Name:</strong>
<p>Admin User</p>
</div>
<div class="col-md-6">
<strong>Email:</strong>
<p>admin@example.com</p>
</div>
<div class="col-md-6">
<strong>Role:</strong>
<p>Administrator</p>
</div>
<div class="col-md-6">
<strong>Last Login:</strong>
<p>2 hours ago</p>
</div>
</div>
</div>
</div>
</div>
@endsection