2018-12-16 15:18:17 -06:00
|
|
|
@extends('widgets.settings.base')
|
|
|
|
|
|
|
|
|
|
@section('form')
|
|
|
|
|
<div class="form-group">
|
2021-11-28 21:17:11 -06:00
|
|
|
<label for="title-{{ $id }}" class="control-label">{{ __('Widget title') }}</label>
|
|
|
|
|
<input type="text" class="form-control" name="title" id="title-{{ $id }}" placeholder="{{ __('Default Title') }}" value="{{ $title }}">
|
2018-12-16 15:18:17 -06:00
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="form-group">
|
2021-11-28 21:17:11 -06:00
|
|
|
<label for="notes-{{ $id }}" class="control-label">{{ __('Notes') }}</label>
|
2018-12-16 15:18:17 -06:00
|
|
|
<textarea name="notes" id="notes-{{ $id }}" rows="3" class="form-control">{{ $notes }}</textarea>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<br />
|
|
|
|
|
<div class="form-group">
|
|
|
|
|
The following html tags are supported: <b>, <iframe>, <i>, <ul>, <ol>, <li>, <h1>, <h2>, <h3>, <h4>, <br>, <p>.<br />
|
|
|
|
|
If you want just text then wrap in <pre></pre>
|
|
|
|
|
</div>
|
|
|
|
|
@endsection
|