@php
$registerMethod = getGeneralSettings('register_method') ?? 'mobile';
$showOtherRegisterMethod = getFeaturesSettings('show_other_register_method') ?? false;
@endphp
@if($showOtherRegisterMethod)
@include('design_1.web.auth.theme_1.includes.mobile_field')
@else
@if($registerMethod == 'mobile')
@include('design_1.web.auth.theme_1.includes.mobile_field')
@else
@include('design_1.web.auth.theme_1.includes.email_field')
@endif
@endif