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

Edit Group

@csrf @method('PUT')
@error('name')

{{ $message }}

@enderror
@error('description')

{{ $message }}

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

{{ $message }}

@enderror
is_active) ? 'checked' : '' }} class="h-4 w-4 text-woot-600 focus:ring-woot-500 border-gray-300 rounded">

Select operators to add to this group

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

No operators available.

@endif
Cancel
@endsection