{{-- * LaraClassifier - Classified Ads Web Application * Copyright (c) BeDigit. All Rights Reserved * * Website: https://laraclassifier.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 - http://codecanyon.net/licenses/standard --}} @extends('layouts.master') @section('content') @if (!(isset($paddingTopExists) and $paddingTopExists))
@endif
@if (isset($errors) && $errors->any())
{{ t('oops_an_error_has_occurred') }}
    @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 = !socialLoginIsEnabled() ? ' mt-5' : ' mt-4'; @endphp
{!! csrf_field() !!}
{{-- username --}} @php $usernameIsEnabled = !config('larapen.core.disable.username'); @endphp @if ($usernameIsEnabled)
@endif {{-- 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' : ''; @endphp
{{-- phone --}} @php $phoneError = isset($errors) && $errors->has('phone') ? ' is-invalid' : ''; $phoneCountryValue = config('country.code'); @endphp
{{-- password --}}
{{-- password_confirmation --}}
{{ t('at_least_num_characters', ['num' => config('settings.security.password_min_length', 6)]) }}

{{-- firstname --}}
{{-- middlename --}}
{{-- lastname --}}
{{-- suffix --}}
{{-- user_gender --}}