@extends('front.layout') @section('meta-keywords', "$seo->meta_keywords") @section('meta-description', "$seo->meta_description") @section('content')

{{ __('Register') }}

{{ __('Register') }}

{{ __('Register your account to continue.') }}

@csrf
@if($errors->has('name'))

{{ $errors->first('name') }}

@endif
@if($errors->has('username'))

{{ $errors->first('username') }}

@endif
@if($errors->has('email'))

{{ $errors->first('email') }}

@endif
@if($errors->has('password'))

{{ $errors->first('password') }}

@endif
@if ($visibility->is_recaptcha == 1)
{!! NoCaptcha::renderJs() !!} {!! NoCaptcha::display() !!} @if ($errors->has('g-recaptcha-response')) @php $errmsg = $errors->first('g-recaptcha-response'); @endphp

{{__("$errmsg")}}

@endif
@endif

{{ __('Already have an acocunt?') }} {{ __('Login') }}

@endsection