@extends('frontend.layouts.app') @section('content')

{{ translate('Create an account.')}}

@csrf
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if (\App\Addon::where('unique_identifier', 'otp_system')->first() != null && \App\Addon::where('unique_identifier', 'otp_system')->first()->activated)
@else
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
@if(get_setting('google_recaptcha') == 1)
@endif
@if(get_setting('google_login') == 1 || get_setting('facebook_login') == 1 || get_setting('twitter_login') == 1)
{{ translate('Or Join With')}}
@endif

{{ translate('Already have an account?')}}

{{ translate('Log In')}}
@endsection @section('script') @if(get_setting('google_recaptcha') == 1) @endif @endsection