@php use App\Enums\UserRole; $currentRouteName = Route::currentRouteName(); $parts = explode('.', $currentRouteName); $section = $parts[0]; $role_id = UserRole::arrayRole[$section]->value; @endphp @extends('layout.auth_layout', ['title' => \App\Enums\PageTitle::titleName[$section] . ' | Đăng ký']) @push('style') @vite(['resources/css/shared_register_form.css', 'resources/css/layout/modal.css']) @endpush @section('content')
@if (Request::is('tutors/register') && !is_null($signUpContent['tutor'])) {!! $signUpContent['tutor']->content !!} @elseif (Request::is('teachers/register') && !is_null($signUpContent['teacher'])) {!! $signUpContent['teacher']->content !!} @elseif (Request::is('agencies/register') && !is_null($signUpContent['agency'])) {!! $signUpContent['agency']->content !!} @else

Chính sách chia sẻ trách nhiệm

Phí trách nhiệm này là của các bạn, chúng tôi chỉ phụ thu để đảm bảo rằng bạn sẽ làm đúng công việc mà bạn đã đồng ý đảm nhận. Tránh trường hợp các bạn không làm đúng công việc ảnh hưởng đến Uy Tín của Sieuhoc.com.

Chúng tôi dẽ hoàn trả lại phí này ngay sau khi bạn chấm dứt hợp đồng với Sieuhoc.com.

Chính sách chia sẻ Quyền lợi

Tiền sẽ được chuyển vào tài khoản của bạn ngay sau khi học viên chấp nhận đặt lịch học.

Sieuhoc.com sẽ khấu trừ 20% cho chi phí Marketting và giới thiệu.

@endif
@csrf

đăng ký tài khoản

Một địa chỉ Gmail chỉ tạo được một tài khoản trên website, nên bạn nhớ dùng địa chỉ chưa đăng ký nhé!

@if (session()->has('error')) @endif @if (session()->has('message')) @endif
@error('fullname') {{ $message }} @enderror
@error('email') {{ $message }} @enderror
@error('password') {{ $message }} @enderror
{!! NoCaptcha::display() !!} @error('g-recaptcha-response') {{ $message }} @enderror
Bằng cách đăng ký tài khoản, bạn đồng ý với các điều khoảnđiều kiện của Sieuhoc.com
@error('agree_terms') {{ $message }} @enderror
@include('modals.show_notice')

Bạn đã có tài khoản?

Hoặc đăng ký bằng

@include('landing.modal_video_guide_register')
@endsection @push('script') @vite(['resources/js/register.js', 'resources/js/app.js']) {!! NoCaptcha::renderJs() !!} @if (session()->has('registerData') && session('isSuccess') == true) @endif @endpush