@extends('layouts.auth') @section('content')
@csrf @if (session('status'))
{{ session('status') }}
@endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
@if($global->google_recaptcha_key)
@endif
@if(!module_enabled('Subdomain'))

@lang('app.dontHaveAccount') @lang('app.register')

@endif
@endsection