15 lines
349 B
PHP
15 lines
349 B
PHP
@extends('layouts.app')
|
|
|
|
@section('page_title', 'My Profile')
|
|
|
|
@section('content')
|
|
<div class="card" style="min-height: 500px;">
|
|
<div class="card-header">
|
|
<i class="fa-solid fa-user" style="color:gray;"> My Profile</i>
|
|
</div>
|
|
<div class="card-body">
|
|
<p>This is the Profile page content.</p>
|
|
</div>
|
|
</div>
|
|
@endsection
|