@extends('.frontend.default') @section('content')
@csrf

新用戶註冊

用戶申請人必須是通過香港教育局認可的香港學校教師(我是否符合資格?)

@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif

登入資料

{{__('passwords.hint')}}

教師任教資料

@php $teacher_subjects = []; if(!empty(old('teacher_subjects')) && count(old('teacher_subjects')) > 0){ foreach (old('teacher_subjects') as $teacher_subject) { $subject = explode(',',$teacher_subject); $teacher_subjects[] = [ 'grade' => $subject[1], 'subject_id' => $subject[2], ]; } } @endphp @include('.frontend.template.school.subject',[ 'id' => 'register', 'default' => $teacher_subjects, 'dropdown_class' => 'pl-3', ])

校內其他工作


個人資料(請填寫中/英文全名以核實文件)

@include( 'frontend.template.teacher.authentication.normal',[ 'id' => 'teacher_authentication_file', 'teacher_authentication_file' => null ])



@include("frontend.includes.google_recaptcha") @endsection