Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
580 B
PHP
Raw Permalink Normal View History

2018-12-16 15:18:17 -06:00
<form role="form" class="dashboard-widget-settings" onsubmit="widget_settings(this); return false;">
2019-07-17 07:20:26 -05:00
@csrf
2018-12-16 15:18:17 -06:00
@yield('form')
2020-10-02 16:52:04 +03:00
<div class="form-group">
<label for="refresh-{{ $id }}" class="control-label">{{ __('Widget refresh interval (s)') }}</label>
2020-10-02 16:52:04 +03:00
<input type="number" step="1" min="1" class="form-control" name="refresh" id="refresh-{{ $id }}" value="{{ $refresh }}">
</div>
<div style="margin-top: 8px;">
<button type="submit" class="btn btn-primary pull-right">{{ __('Save') }}</button>
2020-10-02 16:52:04 +03:00
</div>
2018-12-16 15:18:17 -06:00
</form>
@yield('javascript')