Skip to content

Instantly share code, notes, and snippets.

@bran921007
Created May 7, 2015 21:17
Show Gist options
  • Save bran921007/67d369430258a7fdb29b to your computer and use it in GitHub Desktop.
Save bran921007/67d369430258a7fdb29b to your computer and use it in GitHub Desktop.
update.blade.php
@extends('app')
@section('content')
<div class="container">
Editar: <h1>{{$article->title }}</h1>
{!! Form::model($article, ['method' => 'PATCH', 'action' => ['HomeController@update', $article->id]]) !!}
@include('partials.form',['buttonSubmit'=>'Actualizar Articulo'])
{!! Form::close() !!}
</div>
@stop
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment