Files
app/resources/views/pages/profile.blade.php
2025-12-22 12:37:16 +07:00

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