"No Server" Option
This commit is contained in:
parent
61d6240717
commit
15a8807642
1 changed files with 5 additions and 4 deletions
|
@ -44,14 +44,16 @@
|
|||
</span>
|
||||
@endif
|
||||
</div>
|
||||
@if ($servers->count() >= 1)
|
||||
|
||||
<div class="form-group col-sm-12 {{ $errors->has('server') ? ' has-error' : '' }}">
|
||||
<label for="server" class="control-label">{{__("Server")}}</label>
|
||||
<select id="server" type="server" class="form-control" name="server">
|
||||
<option value="">{{__("Select Servers")}}</option>
|
||||
<option value="">{{ __("No Server") }}</option>
|
||||
@if ($servers->count() >= 1)
|
||||
@foreach ($servers as $server)
|
||||
<option value="{{ $server->id }}">{{ $server->name }}</option>
|
||||
@endforeach
|
||||
@endif
|
||||
</select>
|
||||
|
||||
@if ($errors->has('category'))
|
||||
|
@ -60,7 +62,7 @@
|
|||
</span>
|
||||
@endif
|
||||
</div>
|
||||
@endif
|
||||
|
||||
<div class="form-group col-sm-12 {{ $errors->has('ticketcategory') ? ' has-error' : '' }}">
|
||||
<label for="ticketcategory" class="control-label">{{__("Category")}}</label>
|
||||
<select id="ticketcategory" type="ticketcategory" class="form-control" required name="ticketcategory">
|
||||
|
@ -143,4 +145,3 @@
|
|||
|
||||
</script>
|
||||
@endsection
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue