@extends('frontend.layouts.web.app') @section('style') @endsection @section('content')

{{translate('Welcome')}}

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

@csrf
@if ($errors->has('name')) {{ $errors->first('name') }} @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 || get_setting('apple_login') == 1) @endif

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

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