Notify subscribers checkbox is now a single line, removed optional indicator

This commit is contained in:
Michael Mollick
2015-10-20 21:09:52 -04:00
parent 6d231fb68a
commit 4771a134c4

View File

@@ -43,10 +43,11 @@
<label>{{ trans('forms.incidents.scheduled_at') }}</label>
<input type="text" name="incident[scheduled_at]" class="form-control" rel="datepicker" required>
</div>
<div class="form-group">
<label>{{ trans('forms.incidents.notify_subscribers') }}</label>
<input type="checkbox" name="incident[notify]" value="1" checked="{{ Input::old('incident.message', 'checked') }}">
<span class="help-block">{{ trans('forms.optional') }}</span>
<div class="checkbox">
<label>
<input type="checkbox" name="incident[notify]" value="1" checked="{{ Input::old('incident.message', 'checked') }}">
{{ trans('forms.incidents.notify_subscribers') }}
</label>
</div>
</fieldset>