@extends('auth.master') @section('additional_head_tags') {{ __('Register') }} @if(captcha_is_enabled('register') && captcha_is('google')) {!! google_captcha_js() !!} @endif @endsection @section('title', __('Create an account')) @section('content')
@csrf
@error('name')
{{ $message }}
@enderror
@error('email')
{{ $message }}
@enderror
@error('password')
{{ $message }}
@enderror
@error('captcha')
{{ $message }}
@enderror @error('g-recaptcha-response')
{{ $message }}
@enderror @if(captcha_is_enabled('register'))
{!! render_captcha() !!} @if(captcha_is('mewebstudio')) @endif
@endif

{{ __('Have an account') }} ?

{{ __('Login') }}
@endsection