@extends('web.layouts.auth') @section('title', '회원정보 입력 | PIN FOR YOU') @section('meta_description', 'PIN FOR YOU 회원정보 입력 단계입니다.') @section('canonical', url('/auth/register/profile')) @section('h1', '회원정보 입력') @section('desc', '본인인증 정보는 수정할 수 없으며, 아이디/비밀번호 등 가입 정보를 입력해 주세요.') @section('card_aria', '회원가입 Step2 - 가입정보 입력') @section('show_cs_links', true) @section('auth_content')
@csrf {{-- 진행 단계 --}}
가입정보확인
약관/인증 확인
가입정보입력
{{-- PASS 인증 정보(수정 불가) --}}
본인인증 정보
@php $pv = (array) session('register.pass_payload', []); $pvName = $pv['NAME'] ?? '-'; $pvBirth = $pv['DOB'] ?? null; // YYYYMMDD $pvSex = $pv['SEX'] ?? null; // 1/2 등 $pvNation = $pv['FOREIGNER'] ?? null; // 0/1 $pvTelco = $pv['CARRIER'] ?? (session('signup.carrier') ?? '-'); // SKT/KT/LGU+ 또는 코드 $pvPhone = $pv['PHONE'] ?? (session('signup.phone') ?? '-'); // 표시용 변환(성별/내외국인) $pvSexText = match((string)$pvSex) { '1' => '남', '2' => '여', default => ($pvSex ?? '-'), }; $pvNationText = match((string)$pvNation) { '0' => '내국인', '1' => '외국인', default => ($pvNation ?? '-'), }; // 생년월일 포맷 $pvBirthText = '-'; if (is_string($pvBirth) && strlen($pvBirth) >= 8) { $pvBirthText = substr($pvBirth,0,4).'년 '.substr($pvBirth,4,2).'월 '.substr($pvBirth,6,2).'일'; } elseif (!empty($pvBirth)) { $pvBirthText = (string)$pvBirth; } // 휴대폰 포맷(표시용) $pvPhoneText = (string)$pvPhone; if (is_string($pvPhone) && preg_match('/^\d{10,11}$/', $pvPhone)) { $pvPhoneText = substr($pvPhone,0,3).'-'.substr($pvPhone,3,4).'-'.substr($pvPhone,7); } @endphp
성명
{{ $pvName}}
생년월일
{{ $pvBirthText }}
성별
{{ $pvSexText }}
내외국인
{{ $pvNationText}}
통신사
{{ $pvTelco }}
휴대전화번호
{{ $pvPhoneText}}
위 정보가 다르면 인증을 중단하고 처음부터 다시 진행해 주세요.
{{-- 아이디(이메일) --}}
{{-- 비밀번호(6자리 숫자) --}}
{{-- 2차 비밀번호(4자리 숫자) --}}
처음으로
@endsection