14 lines
481 B
PHP

@extends ('layouts.app')
@section ('content')
<h1>{{ $data }}</h1>
<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 />
<x-profile.personal-info-card />
<x-profile.address-card />
</div>
@endsection