@extends('layouts.app') @section('content')
DELETE CREDENTIALS
@php $session_otp = Session::get('otp'); @endphp
@if (session('success'))

{{ session('success') }}

@endif @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @if ($session_otp)
@csrf
@else
@csrf
@endif
@endsection