add frequency control to dynamic config

This commit is contained in:
glmdev
2019-02-10 01:59:05 -06:00
parent 90f97a5453
commit 292d088a74
3 changed files with 39 additions and 18 deletions

View File

@@ -31,6 +31,20 @@
</div>
</div>
<div class="form-group row">
<label for="freq" class="col-md-4 col-form-label text-md-right">{{ __('Polling Frequency') }}</label>
<div class="col-md-6">
<input id="freq" type="text" class="form-control{{ $errors->has('freq') ? ' is-invalid' : '' }}" name="freq" value="{{ old('freq') }}" placeholder="15" required autofocus>
@if ($errors->has('freq'))
<span class="invalid-feedback" role="alert">
<strong>{{ $errors->first('freq') }}</strong>
</span>
@endif
</div>
</div>
<div class="form-group row">
<label for="camera" class="col-md-4 col-form-label text-md-right">{{ __('Camera Device Stream') }}</label>