@extends('layouts.user') @section('title') @lang('Two Step Authentication') @endsection @section('breadcrumb') @lang('Two Step Authentication') @endsection @section('content')
@if (auth()->user()->two_fa_status == 1)

@lang('Deactivate Two Step Authentication')

@else

@lang('Activate Two Step Authentication')

@endif
@csrf

@lang('Please check your phone number to get OTP code. Your phone number is : '.auth()->user()->phone)

@endsection