@extends('default') @section('content') @if($errors->any())
@foreach ($errors->all() as $error) {{ $error }}
@endforeach
@endif {{ Form::model($post, array('route' => array('posts.update', $post->id), 'method' => 'PUT')) }}
{{ Form::label('title', 'Title', ['class'=>'form-label']) }} {{ Form::text('title', null, array('class' => 'form-control')) }}
{{ Form::label('url', 'Url', ['class'=>'form-label']) }} {{ Form::text('url', null, array('class' => 'form-control')) }}
{{ Form::submit('Edit', array('class' => 'btn btn-primary')) }} {{ Form::close() }} @stop