Netmail forwarding shouldnt be required
Create Docker Image / Build Docker Image (x86_64) (push) Successful in 41s Details
Create Docker Image / Build Docker Image (arm64) (push) Successful in 1m49s Details
Create Docker Image / Final Docker Image Manifest (push) Successful in 14s Details

This commit is contained in:
Deon George 2024-06-03 21:11:02 +10:00
parent 8fb3a21fcd
commit 434226f8bc
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@
<label for="system_id" class="form-label">Forward Netmails</label>
<div class="input-group has-validation">
<span class="input-group-text"><i class="bi bi-envelope-at-fill"></i></span>
<select style="width: 80%;" class="form-select @error('system_id') is-invalid @enderror" id="system_id" name="system_id" required>
<select style="width: 80%;" class="form-select @error('system_id') is-invalid @enderror" id="system_id" name="system_id">
<option value="">&nbsp;</option>
@foreach ($o->systems as $oo)
<option value="{{ $oo->id }}" @if(old('system_id',$o->system_id)==$oo->id)selected @endif>{{ $oo->name }}</option>