@extends('layouts.auth') @section('site_title', formatTitle([__('Register'), config('settings.title')])) @section('head_content') @endsection @section('content')

{{ __('Register') }}

{{ __('Join us.') }}

@include('shared.message')
@csrf
@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 ($errors->has('agreement')) {{ $errors->first('agreement') }} @endif
@if(config('settings.captcha_driver')) @include('shared.captcha', ['id' => 'registration-form']) {{ __('Register') }} @if ($errors->has(formatCaptchaFieldName())) {{ __($errors->first(formatCaptchaFieldName())) }} @endif @else @endif
@include('auth.partials.social')
{{ __('Register') }}
{{ __('Join us.') }}
@endsection