1 @extends('layouts.simple')
4 <div class="container small">
7 @include('settings.parts.navbar', ['selected' => 'webhooks'])
10 <div class="card content-wrap auto-height">
11 <h1 class="list-heading"> {{ trans('settings.webhooks_delete') }}</h1>
13 <p>{{ trans('settings.webhooks_delete_warning', ['webhookName' => $webhook->name]) }}</p>
16 <form action="{{ $webhook->getUrl() }}" method="POST">
18 {!! method_field('DELETE') !!}
20 <div class="grid half v-center">
23 <strong>{{ trans('settings.webhooks_delete_confirm') }}</strong>
27 <div class="form-group text-right">
28 <a href="{{ $webhook->getUrl() }}" class="button outline">{{ trans('common.cancel') }}</a>
29 <button type="submit" class="button">{{ trans('common.confirm') }}</button>