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