mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
2fbf5527c7
Fixes #4444
13 lines
485 B
PHP
13 lines
485 B
PHP
<form action="{{ url('/watching/update') }}" method="POST">
|
|
{{ csrf_field() }}
|
|
{{ method_field('PUT') }}
|
|
<input type="hidden" name="type" value="{{ $entity->getMorphClass() }}">
|
|
<input type="hidden" name="id" value="{{ $entity->id }}">
|
|
<button type="submit"
|
|
name="level"
|
|
value="updates"
|
|
class="icon-list-item text-link">
|
|
<span>@icon('watch')</span>
|
|
<span>{{ trans('entities.watch') }}</span>
|
|
</button>
|
|
</form> |