mirror of
https://github.com/twinpath/app.git
synced 2026-01-27 05:42:04 +07:00
12 lines
495 B
PHP
12 lines
495 B
PHP
@extends('layouts.app')
|
|
|
|
@section('content')
|
|
<x-common.page-breadcrumb pageTitle="User Profile" />
|
|
<div class="rounded-2xl border border-gray-200 bg-white p-5 dark:border-gray-800 dark:bg-white/[0.03] lg:p-6">
|
|
<h3 class="mb-5 text-lg font-semibold text-gray-800 dark:text-white/90 lg:mb-7">Profile</h3>
|
|
<x-profile.profile-card :user="$user" />
|
|
<x-profile.personal-info-card :user="$user" />
|
|
<x-profile.address-card :user="$user" />
|
|
</div>
|
|
@endsection
|