@extends('admin.layouts.app') @section('title', 'New Webhook') @section('breadcrumb') Webhooks Create @endsection @section('content')
@if($errors->any())
@foreach($errors->all() as $e)
{{ $e }}
@endforeach
@endif
@csrf
POST requests with JSON payload will be sent to this URL.
@foreach($events as $event) @endforeach
Cancel
@endsection