@extends('layouts.app') @section('title', 'Create Group') @section('content')

Create New Group

@csrf
@error('name')

{{ $message }}

@enderror
@error('description')

{{ $message }}

@enderror
Choose a color to identify this group
@error('color')

{{ $message }}

@enderror

Select operators to add to this group

@if($operators->count() > 0)
@foreach($operators as $operator) @endforeach
@else

No operators available. Create operator users first.

@endif
Cancel
@endsection