{!! Form::label('id', 'Id:') !!}

{{ $appuser->id }}

{!! Form::label('name', 'Name:') !!}

{{ $appuser->name }}

{!! Form::label('mobile_no', 'Mobile No:') !!}

{{ $appuser->mobile_no }}

{!! Form::label('otp', 'Otp:') !!}

{{ $appuser->otp }}

{!! Form::label('otp_expiry', 'Otp Expiry:') !!}

{{ $appuser->otp_expiry }}

{!! Form::label('created_at', 'Created At:') !!}

{{ convertToTimezone($appuser->created_at, "Asia/Kolkata")->format('d-m-Y H:i:s') }}

{!! Form::label('updated_at', 'Updated At:') !!}

{{ convertToTimezone($appuser->updated_at, "Asia/Kolkata")->format('d-m-Y H:i:s') }}