@extends('auth.layouts.auth') @section('meta') @php $data = metaData('register'); @endphp @endsection @section('description') {{ $data->description }} @endsection @section('title') {{ __('register') }} @endsection @section('og:image') {{ asset($data->image) }} @endsection @section('content')
@csrf

{{ __('create_account') }}

{{ __('already_have_account') }} {{ __('log_in') }}

{{ __('create_account_as_a') }}

@error('name') {{ __($message) }} @enderror
@error('username') {{ __($message) }} @enderror
@error('email') {{ __($message) }} @enderror
@error('password') {{ __($message) }} @enderror
@error('password_confirmation') {{ __($message) }} @enderror
@if (config('captcha.active'))
{!! NoCaptcha::display() !!}
@if ($errors->has('g-recaptcha-response')) {{ $errors->first('g-recaptcha-response') }} @endif
@endif
{{ __('terms_of_service') }}
@php $google = config('zakirsoft.google_active') && config('zakirsoft.google_id') && config('zakirsoft.google_secret'); $facebook = config('zakirsoft.facebook_active') && config('zakirsoft.facebook_id') && config('zakirsoft.facebook_secret'); $twitter = config('zakirsoft.twitter_active') && config('zakirsoft.twitter_id') && config('zakirsoft.twitter_secret'); $linkedin = config('zakirsoft.linkedin_active') && config('zakirsoft.linkedin_id') && config('zakirsoft.linkedin_secret'); $github = config('zakirsoft.github_active') && config('zakirsoft.github_id') && config('zakirsoft.github_secret'); @endphp @if ($google || $facebook || $twitter || $linkedin || $github)

{{ __('or') }}

@endif
@if ($google)
@endif @if ($facebook)
@endif @if ($twitter)
@endif @if ($linkedin)
@endif @if ($github)
@endif
@endsection @section('script') @endsection @section('style') @endsection