@extends('theme::layout.account') @section('seo_title')用户注册@endsection @section('content')

{{ Setting()->get('register_title','欢迎加入Tipask问答社区') }}

创建新账号

@if ($errors->first('name')) {{ $errors->first('name') }} @endif
@if(Setting()->get('register_type') == 'mobile')
@if ($errors->first('mobile')) {{ $errors->first('mobile') }} @endif
@if ($errors->first('code')) {{ $errors->first('code') }} @endif
@else
@if ($errors->first('email')) {{ $errors->first('email') }} @endif
@endif
@if ($errors->first('password')) {{ $errors->first('password') }} @endif
@if(Setting()->get('code_register') == 1) @include('theme::layout.auth_captcha') @endif
同意并接受 《服务条款》
@endsection @section('script') @if(Setting()->get("register_type")=='mobile') @include('theme::layout.sms_code_modal') @endif @endsection