14 lines
397 B
PHP
14 lines
397 B
PHP
@extends('layouts.app')
|
|
|
|
@section('title', 'My Profile')
|
|
|
|
@section('content')
|
|
@livewire('main-breadcrumbs', ['pageRoutes' => [
|
|
['path' => '/dashboard', 'name' => 'Dashboard'],
|
|
['path' => '/my-profile', 'name' => 'Profile'],
|
|
]])
|
|
<div class="p-0" style="background: #fff;">
|
|
<h1>My Profile</h1>
|
|
<p>View your profile details here.</p>
|
|
</div>
|
|
@endsection |