@extends('layouts.base') @section('title', '新規登録') @push('head') @if (!empty(config('captcha.secret'))) {!! NoCaptcha::renderJs() !!} @endif @endpush @section('content')

新規登録


注意! Tissueでは、登録に使用したメールアドレスの Gravatar を使用します。

他の場所での活動と紐付いてほしくない場合、使用予定のメールアドレスにGravatarが設定されていないかを確認することを推奨します。

{{ csrf_field() }}
@if ($errors->has('name'))
{{ $errors->first('name') }}
@endif
@if ($errors->has('email'))
{{ $errors->first('email') }}
@endif
@if ($errors->has('password'))
{{ $errors->first('password') }}
@endif
プライバシーに関するオプション (全て任意です)
@if (!empty(config('captcha.secret')))
{!! NoCaptcha::display() !!}
@if ($errors->has('g-recaptcha-response'))
{{ $errors->first('g-recaptcha-response') }}
@endif
@endif
@endsection