@extends('layouts.core.backend', [ 'menu' => 'webhook', ]) @section('title', trans('messages.webhook.add_new')) @section('head') @endsection @section('page_header')
settings_input_component

{{ $webhook->name }}

{{ trans('messages.webhook.event.' . $webhook->event . '.wording') }}

@endsection @section('content') @php $formId = 'WebhookForm' . uniqid(); @endphp
@csrf @include('helpers.form_control.webhook', [ 'webhook' => $webhook, 'formId' => $formId, 'testUrl' => action('Admin\WebhookController@test', $webhook->uid), 'tags' => $webhook->getTags(), ])
{{ trans('messages.cancel') }}
@endsection