芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/tblonline.org/resources/views/auth/register.blade.php
@extends('layouts.auth') @section('content')
{{ _lang('Create Your Account Now') }}
@csrf
@if ($errors->has('name'))
{{ $errors->first('name') }}
@endif
@if ($errors->has('email'))
{{ $errors->first('email') }}
@endif
{{ _lang('Country Code') }}
@foreach(get_country_codes() as $key => $value)
{{ $value['country'].' (+'.$value['dial_code'].')' }}
@endforeach
@if ($errors->has('phone'))
{{ $errors->first('phone') }}
@endif
@if ($errors->has('password'))
{{ $errors->first('password') }}
@endif
@if ($errors->has('g-recaptcha-response'))
{{ $errors->first('g-recaptcha-response') }}
@endif
{{ _lang('Create My Account') }}
{{ _lang('Already Have An Account?') }}
{{ _lang('Log In Here') }}
@if(get_option('enable_recaptcha', 0) == 1) @endif @endsection