@extends('layouts.popup.small') @section('title') {{ trans('messages.webhooks.edit') }} @endsection @section('content')
{{ csrf_field() }}
@include('helpers.form_control', [ 'type' => 'text', 'name' => 'endpoint', 'value' => $webhook->endpoint, 'label' => trans('messages.webhook.endpoint.desc'), 'rules' => ['endpoint' => 'required'], ])
@endsection