mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
15 lines
620 B
PHP
15 lines
620 B
PHP
@extends('device.index')
|
|
|
|
@section('tab')
|
|
<x-panel title="{{ __('Device Notes') }}">
|
|
<form method="post" action="{{ route('device.notes.update', $device)}}">
|
|
@csrf
|
|
@method('PUT')
|
|
<div class="form-group">
|
|
<textarea @cannot('update-notes', $device) disabled @endcannot class="form-control" rows="3" name="note">{{ $device->notes }}</textarea>
|
|
</div>
|
|
<button @cannot('update-notes', $device) disabled @endcannot type="submit" class="btn btn-default"><i class="fa fa-check"></i> Save</button>
|
|
</form>
|
|
</x-panel>
|
|
@endsection
|