@extends('default') @section('content') @if($errors->any())
@foreach ($errors->all() as $error) {{ $error }}
@endforeach
@endif {!! Form::open(['route' => 'posts.store']) !!}
{{ 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('Create', array('class' => 'btn btn-primary')) }} {{ Form::close() }} @stop