@php $registerMethod = getGeneralSettings('register_method') ?? 'mobile'; $showOtherRegisterMethod = getFeaturesSettings('show_other_register_method') ?? false; @endphp @if($showOtherRegisterMethod)
@error('email')
{{ $message }}
@enderror
@include('web.default.auth.register_includes.mobile_field')
@else @if($registerMethod == 'mobile')
@include('web.default.auth.register_includes.mobile_field')
@else
@error('email')
{{ $message }}
@enderror
@endif @endif