{{-- * LaraClassifier - Classified Ads Web Application * Copyright (c) BeDigit. All Rights Reserved * * Website: https://laraclassifier.com * Author: Mayeul Akpovi (BeDigit - https://bedigit.com) * * LICENSE * ------- * This software is furnished under a license and may be used and copied * only in accordance with the terms of such license and with the inclusion * of the above copyright notice. If you Purchased from CodeCanyon, * Please read the full License from here - https://codecanyon.net/licenses/standard --}} @extends('layouts.master') @section('content') @includeFirst([config('larapen.core.customizedViewPath') . 'common.spacer', 'common.spacer'])
@if (isset($errors) && $errors->any())
{{ t('validation_errors_title') }}
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @if (session()->has('flash_notification'))
@include('flash::message')
@endif

{{ t('create_your_account_it_is_quick') }}

@includeFirst([config('larapen.core.customizedViewPath') . 'auth.login.inc.social', 'auth.login.inc.social']) @php $mtAuth = !isSocialAuthEnabled() ? ' mt-5' : ' mt-4'; @endphp
{!! csrf_field() !!} @honeypot
{{-- name --}} @php $nameError = (isset($errors) && $errors->has('name')) ? ' is-invalid' : ''; @endphp
{{-- country_code --}} @if (empty(config('country.code'))) @php $countryCodeError = (isset($errors) && $errors->has('country_code')) ? ' is-invalid' : ''; $countryCodeValue = (!empty(config('ipCountry.code'))) ? config('ipCountry.code') : 0; @endphp
@else @endif {{-- auth_field (as notification channel) --}} @php $authFields = getAuthFields(true); $authFieldError = (isset($errors) && $errors->has('auth_field')) ? ' is-invalid' : ''; $usersCanChooseNotifyChannel = isUsersCanChooseNotifyChannel(); $authFieldValue = ($usersCanChooseNotifyChannel) ? (old('auth_field', getAuthField())) : getAuthField(); @endphp @if ($usersCanChooseNotifyChannel)
@foreach ($authFields as $iAuthField => $notificationType)
@endforeach
{{ t('notifications_channel_hint') }}
@else @endif @php $forceToDisplay = isBothAuthFieldsCanBeDisplayed() ? ' force-to-display' : ''; @endphp {{-- email --}} @php $emailError = (isset($errors) && $errors->has('email')) ? ' is-invalid' : ''; $emailRequiredClass = (getAuthField() == 'email') ? ' required' : ''; @endphp
{{-- phone --}} @php $phoneError = (isset($errors) && $errors->has('phone')) ? ' is-invalid' : ''; $phoneCountryValue = config('country.code'); $phoneRequiredClass = (getAuthField() == 'phone') ? ' required' : ''; @endphp
{{-- username --}} @php $usernameIsEnabled = !config('larapen.core.disable.username'); @endphp @if ($usernameIsEnabled)
@endif {{-- password --}} @php $passwordError = (isset($errors) && $errors->has('password')) ? ' is-invalid' : ''; @endphp
{{ t('at_least_num_characters', ['num' => config('settings.security.password_min_length', 6)]) }}
@include('layouts.inc.tools.captcha', ['colLeft' => 'col-md-3', 'colRight' => 'col-md-6']) {{-- accept_terms --}} @php $acceptTermsError = (isset($errors) && $errors->has('accept_terms')) ? ' is-invalid' : ''; @endphp
{{-- accept_marketing_offers --}} @php $acceptMarketingOffersError = (isset($errors) && $errors->has('accept_marketing_offers')) ? ' is-invalid' : ''; @endphp
{{-- Button --}}

{{ t('create_new_listing') }}

{{ t('do_you_have_something_text', ['appName' => config('app.name')]) }}

{{ t('create_and_manage_items') }}

{{ t('become_a_best_seller_or_buyer_text') }}

{{ t('create_your_favorite_listings_list') }}

{{ t('create_your_favorite_listings_list_text') }}

@endsection @section('after_scripts') @endsection