@extends('dashboard.admin.layouts.master') @section('content')

{{ $admin->email }}

Registered codes
    @forelse ($verificationCodes as $verificationCode)
    {{ $verificationCode->name }}

    Applicable for: @if ($verificationCode->applicable_to == 'All') {{ $verificationCode->applicable_to }} users @else {{ @$verificationCode->user->first_name . ' ' . @$verificationCode->user->last_name }} @endif

    Nature : {{ $verificationCode->length }} {{ $verificationCode->nature_of_code }} code {{ $verificationCode->created_at }}
    @empty
    No verification code registered
    @endforelse
@csrf
@include('partials.validation_message')

New verification code

What this code is all about
How long do you want this code to be when generated?
Do you want this code to be a mixture of letters and numbers(alpha-numeric)? or just numbers(numeric)
@endsection