2026-01-12 13:51:45 +09:00

31 lines
1003 B
PHP

@php
$pageTitle = '나의정보';
$pageDesc = '연락처, 비밀번호, 보안 관련 설정을 여기서 정리하세요.';
$breadcrumbs = [
['label' => '홈', 'url' => url('/')],
['label' => '마이페이지', 'url' => url('/mypage/info')],
['label' => '나의정보', 'url' => url()->current()],
];
$mypageActive = 'info';
@endphp
@extends('web.layouts.subpage')
@section('title', '나의정보 | PIN FOR YOU')
@section('meta_description', 'PIN FOR YOU 마이페이지 나의정보 입니다. 회원 정보 및 설정을 확인하세요.')
@section('canonical', url('/mypage/info'))
@section('subcontent')
<div class="mypage-info-page">
@include('web.partials.content-head', [
'title' => '나의정보',
'desc' => '내 계정 정보를 확인하고 필요한 항목을 관리하세요.'
])
{{-- TODO: 내용 추후 구현 --}}
@include('web.partials.mypage-quick-actions')
</div>
@endsection