@extends('admin.layouts.app') @section( 'content' )
{!! Form::model( $article, [ 'method' => 'PATCH', 'action' => ['Admin\\NewsController@update', $article->id], 'class' => 'form-horizontal' ] ) !!} @include( 'admin.news.form', [ 'submitButtonText' => trans( 'news.update_button' ) ] ) {!! Form::close() !!}
@endsection