{{-- auto_block attempts --}}
{!! Form::label("middleware_{$key}_autoBlock_attempts", 'Block After Attempts', ['class' => 'form-label fs-6 fw-semibold']) !!}
{!! Form::number("middleware_{$key}_autoBlock_attempts", @$auto_block['attempts'] ?? null, ['class' => 'form-control']) !!} IP will be blocked after these attempts in time period (Block Frequency)
{{-- auth_block frequency --}}
{!! Form::label("middleware_{$key}_autoBlock_frequency", 'Block Frequency (minutes) :', ['class' => 'form-label fs-6 fw-semibold']) !!}
{!! Form::number("middleware_{$key}_autoBlock_frequency", @$auto_block['frequency'] / 60 ?? null, ['class' => 'form-control']) !!} IP will be blocked after N attempts during this time.
{{-- auto_block period --}}
{!! Form::label("middleware_{$key}_autoBlock_period", 'Block For (minutes) :', ['class' => 'form-label fs-6 fw-semibold']) !!}
{!! Form::number("middleware_{$key}_autoBlock_period", @$auto_block['period'] / 60 ?? null, ['class' => 'form-control']) !!} Time for which IP will be blocked.