<div class="row">
	<div class="col-12">
		@if($echoareas->count())
			<table class="table monotable" id="echoareas">
				<thead>
				<tr>
					<th>Subscribed</th>
					<th>Echoarea</th>
					<th>Description</th>
				</tr>
				</thead>

				<tbody>
				@foreach ($echoareas as $oo)
					<tr>
						<td><input type="checkbox" name="id[]" value="{{ $oo->id }}" @if($ao->echoareas->search(function($item) use ($oo) { return $item->id === $oo->id; }) !== FALSE)checked @endif></td>
						<td>{{ $oo->name }}</td>
						<td>{{ $oo->description }}</td>
					</tr>
				@endforeach
				</tbody>
			</table>
		@else
			<p>No echoareas available for this system. AKA address security doesnt permit any echoareas.</p>
		@endif
	</div>
</div>

<div class="row">
	<div class="col-2">
		<a href="{{ url('system') }}" class="btn btn-danger">Cancel</a>
	</div>

	<span class="col-6 mt-auto mx-auto text-center align-bottom">
		@if($errors->count())
			<span class="btn btn-sm btn-danger" role="alert">
				There were errors with the submission.
				@dump($errors)
			</span>
		@endif
	</span>

	@can('update_nn',$o)
		<div class="col-2">
			<button type="submit" name="submit" class="btn btn-success float-end">Add</button>
		</div>
	@endcan
</div>