mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-07-31 15:24:31 +03:00
Initial controller/views for webhooks management
This commit is contained in:
16
resources/views/settings/webhooks/edit.blade.php
Normal file
16
resources/views/settings/webhooks/edit.blade.php
Normal file
@ -0,0 +1,16 @@
|
||||
@extends('layouts.simple')
|
||||
|
||||
@section('body')
|
||||
|
||||
<div class="container small">
|
||||
<div class="py-m">
|
||||
@include('settings.parts.navbar', ['selected' => 'webhooks'])
|
||||
</div>
|
||||
|
||||
<form action="{{ url("/settings/webhooks/{$webhook->id}") }}" method="POST">
|
||||
{!! method_field('PUT') !!}
|
||||
@include('settings.webhooks.parts.form', ['model' => $webhook, 'title' => trans('settings.webhooks_edit')])
|
||||
</form>
|
||||
</div>
|
||||
|
||||
@stop
|
Reference in New Issue
Block a user