@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_renew')) @section('subcontent')
@include('web.partials.content-head', [ 'title' => '나의정보 변경', 'desc' => '계정 보안과 개인정보를 안전하게 관리하세요.' ]) {{-- ✅ 상단 상태 카드 --}}
ACCOUNT SETTINGS
내 정보 관리
성명 {{ $memberName ?: '-' }}
이메일 {{ $memberEmail ?: '-' }}
휴대폰 {{ $memberPhone ?: '-' }}
@if(!empty($outAccount))
출금계좌 {{ $outAccount['bank_name'] ?? '' }} {{ $outAccount['bank_act_num'] ?? '' }} ({{ $outAccount['bank_act_name'] ?? '' }})
계좌인증일 {{ $outAccount['act_date'] ?? '' }}
@endif
가입일 {{ $memberDtReg ?: '-' }}
연락처·비밀번호·보안 설정을 한 곳에서 관리합니다. 변경 작업은 보안을 위해 제한된 시간 동안만 가능합니다.
인증 허용 잔여시간 {{ sprintf('%02d:%02d', intdiv((int)$remainSec, 60), (int)$remainSec % 60) }}
{{-- ✅ 설정 카드 그리드 --}}
🔒
비밀번호 변경
보안을 위해 주기적으로 변경을 권장해요
변경
@include('web.mypage.info._withdraw_dialog')
{{-- ✅ 안내/주의사항 --}}
안내
@push('styles') @endpush @push('scripts') @endpush @endsection