19 lines
		
	
	
		
			514 B
		
	
	
	
		
			PHP
		
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			514 B
		
	
	
	
		
			PHP
		
	
	
	
| @extends('layouts.simple')
 | |
| 
 | |
| @section('body')
 | |
| 
 | |
|     <div class="container small">
 | |
|         <div class="py-m">
 | |
|             @include('settings.parts.navbar', ['selected' => 'webhooks'])
 | |
|         </div>
 | |
| 
 | |
|         <form action="{{ $webhook->getUrl() }}" method="POST">
 | |
|             {!! method_field('PUT') !!}
 | |
|             @include('settings.webhooks.parts.form', ['model' => $webhook, 'title' => trans('settings.webhooks_edit')])
 | |
|         </form>
 | |
| 
 | |
|         @include('settings.webhooks.parts.format-example')
 | |
|     </div>
 | |
| 
 | |
| @stop
 |