2021-12-08 09:29:42 -05:00
|
|
|
@extends('layouts.simple')
|
|
|
|
|
|
|
|
@section('body')
|
|
|
|
|
|
|
|
<div class="container small">
|
|
|
|
|
2022-03-26 17:36:05 -04:00
|
|
|
@include('settings.parts.navbar', ['selected' => 'webhooks'])
|
2021-12-08 09:29:42 -05:00
|
|
|
|
2022-01-03 14:42:48 -05:00
|
|
|
<div class="card content-wrap auto-height">
|
|
|
|
<h1 class="list-heading">{{ trans('settings.webhooks_create') }}</h1>
|
|
|
|
|
|
|
|
<form action="{{ url("/settings/webhooks/create") }}" method="POST">
|
|
|
|
{!! csrf_field() !!}
|
|
|
|
@include('settings.webhooks.parts.form', ['title' => trans('settings.webhooks_create')])
|
|
|
|
|
|
|
|
<div class="form-group text-right">
|
|
|
|
<a href="{{ url("/settings/webhooks") }}" class="button outline">{{ trans('common.cancel') }}</a>
|
|
|
|
<button type="submit" class="button">{{ trans('settings.webhooks_save') }}</button>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
2021-12-12 13:02:08 -05:00
|
|
|
|
|
|
|
@include('settings.webhooks.parts.format-example')
|
2021-12-08 09:29:42 -05:00
|
|
|
</div>
|
|
|
|
|
|
|
|
@stop
|