@extends('layouts.admin') @section('styles') @endsection @section('content') @php $mode = isset($mode)?$mode:"Add"; $is_ip_auth_cls = $mobile_email_cls = 'd-none'; $checked_is_ip_auth = $checked_mobile_email_auth = ''; @endphp @if($mode == 'Update') @if(isset($userData['is_ip_auth']) && $userData['is_ip_auth'] == 1 ) //ip auth @php $is_ip_auth_cls = ''; $checked_is_ip_auth = 'checked'; @endphp @else @php $is_ip_auth_cls = 'd-none'; $checked_is_ip_auth = ''; @endphp @endif @if(isset($userData['is_mobile_auth']) && $userData['is_mobile_auth'] == 1 ) //mobile email auth @php $mobile_email_cls = ''; $checked_mobile_email_auth = 'checked'; @endphp @else @php $mobile_email_cls = 'd-none'; $checked_mobile_email_auth = ''; @endphp @endif @endif @php $temp_country_code = (isset($userData['country_code'])?$userData['country_code']:''); @endphp
@endsection @section('scripts') @endsection