@extends('layouts.admin') @section('title', $title ?? 'Bulk Add Newsgroups') @section('content')

{{ $title }}

View All Groups
@if(!empty($groupmsglist))
The following groups have been processed. You can now view them in the group list.
@foreach($groupmsglist as $group) @endforeach
Group Status
{{ $group['group'] }}
@if(strpos($group['msg'], 'Error') !== false) {{ $group['msg'] }} @elseif(strpos($group['msg'], 'exists') !== false) {{ $group['msg'] }} @else {{ $group['msg'] }} @endif
@else
Enter a regular expression to match multiple groups for bulk addition to the system.
@csrf
A regular expression to match against group names. Separate multiple patterns with the pipe symbol (|).
Example: alt.binaries.cd.image.linux|alt.binaries.warez.linux
Inactive groups will not have headers downloaded for them.
Inactive groups will not have backfill headers downloaded for them.
@endif
@endsection