13 lines
		
	
	
		
			363 B
		
	
	
	
		
			PHP
		
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			363 B
		
	
	
	
		
			PHP
		
	
	
	
| @extends('base')
 | |
| 
 | |
| @section('content')
 | |
| 
 | |
|     <div class="container small" ng-non-bindable>
 | |
|         <h1>{{ trans('entities.chapters_edit') }}</h1>
 | |
|         <form action="{{  $chapter->getUrl() }}" method="POST">
 | |
|             <input type="hidden" name="_method" value="PUT">
 | |
|             @include('chapters/form', ['model' => $chapter])
 | |
|         </form>
 | |
|     </div>
 | |
| 
 | |
| @stop |