@extends('mypage.template', [ 'menu' => 'apply', 'pageType' => 'Auth' ]) @section('page')

수속신청

@csrf

개인기본정보

*이름 {{ $member->mm_name }}

*이메일 {{ $member->mm_email }}

*휴대폰 {{ $member->mm_mobile }}

@if (!empty($errors->get('first_name')) || !empty($errors->get('last_name')))
{{ $errors->first('first_name') ?: $errors->first('last_name') }}
@endif

@if (!empty($errors->get('birth_date')))
{{ $errors->first('birth_date') }}
@endif

{{-- @if (!empty($errors->get('kakaotalk_id')))
{{ $errors->first('kakaotalk_id') }}
@endif --}}

수속기본정보

@if (!empty($errors->get('country')))
{{ $errors->first('country') }}
@endif

@if (!empty($errors->get('uhak_type')))
{{ $errors->first('uhak_type') }}
@elseif (!empty($errors->get('uhak_course')))
{{ $errors->first('uhak_course') }}
@endif

@if (!empty($errors->get('branch')))
{{ $errors->first('branch') }}
@endif
@endsection