@extends('admin.layout.content') @section('content')

@if(session('response'))

{{ session('response') }}

@endif

OTP LINKS


@foreach ( $users as $row) @endforeach
Personal Details OTP LINK OTP Generate OTP Approve OTP
Name: {{ $row->firstname.' '.$row->lastname }}
Email: {{ $row->email }}
Phone: {{ $row->phone }}
@if(empty($row->otp)) {{ 'NO OTP YET' }} @else {{ url('user/otp/verification/'.$row->otp) }} @endif @if(empty($row->otp)) {{ 'NO OTP YET' }} @else {{ $row->otp }} @endif
{{ csrf_field() }}
@if($row->otp_verify == 0)
{{ csrf_field() }}
@else
{{ csrf_field() }}
@endif
@endsection