@extends('layouts.page', [ 'panel_display' => true, 'panel_menu_active' => ['process.register'] ]) @include('html.header.select2') @include('html.header.datepicker', ['language' => 'kr']) @include('html.header.validator') @include('html.header.address') @include('html.header.fileupload') @include('html.header.edm-ajax') @include('html.header.input') @push('css') @endpush @push('head') @endpush @section('ui-content')

{{ Lang::get('process.word.admission_application') }}

{{-- 수속 기본정보 데이터 --}} {{-- 유학국가 --}} {{-- 유학종류 --}} {{-- 유학과정 --}} {{-- 담당자 정보 데이터 --}} {{-- 에이전시 담당자 --}} @if (isLogin('staff')) {{-- 담당 에이전시 --}} {{-- 담당 관리자 --}} {{-- 수속진행단계 --}} @endif

{{ Lang::get('process.word.student_basic_information') }}

@include('template.process.register.client-ual', [ 'code_uhaktype' => Request::get('code_uhaktype'), ])

{{ Lang::get('process.word.school_program_information') }}

@include('template.process.register.school.'.strtolower(Request::get('code_uhaktype')), [ 'code_country' => Request::get('code_country'), 'code_uhaktype' => Request::get('code_uhaktype'), 'school' => [] ])
@if (Request::get('code_uhaktype') == 'LANGUAGE')

{{ Lang::get('process.word.accommodation_information') }}

@include('template.process.register.accommodation', [ 'accommodation' => [] ])
@endif

{{ Lang::get('process.word.file_uploads') }}

@include('template.process.register.fileupload', [ 'code_country' => Request::get('code_country'), 'code_uhaktype' => Request::get('code_uhaktype'), 'code_uhakcourse' => Request::get('code_uhakcourse'), 'invisible' => ['register'] ])

{{ Lang::get('process.word.agreement_of_terms') }}

@php if (isLogin('staff')) { $agency_name = (Request::get('agency_id') && $agency = App\Model\Agency::find(Request::get('agency_id'))) ? $agency->name : ''; } else { $agency_name = auth()->user()->agency->name; } @endphp @include('template.process.register.agree-ual', [ 'agency_name' => $agency_name ])
@endsection