@extends('layouts.admin') @section('title') News - Modifica @stop @section('content')
{!! Form::model($news, ['method' => 'PATCH', 'route' => ['news.update', $news->id], 'files'=> true, 'autocomplete' => 'off']) !!} @include('news/_form', ['submit_text' => 'Salva']) {!! Form::close() !!}
@stop