
<?php $__env->startSection('title'); ?>
    Create blog post
<?php $__env->stopSection(); ?>

<?php $__env->startSection('content'); ?>
    <?php echo Form::open(array('route' => 'blog.store', 'role' => 'form')); ?>
        <div class="form-group">
            <?php echo Form::label("title", "Title: "); ?>
            <?php echo Form::text("title", null, array("placeholder" => "Title...")); ?>
        </div>
        <div class="form-group">
            <?php echo Form::label("content", "Content: "); ?>
            <?php echo Form::textarea("content", null, array("class" => "form-control", "placeholder" => "Content...")); ?>
        </div>
        <div class="form-group">
            <?php echo Form::label("tags", "Tags: "); ?>
            <?php echo Form::text("tags", null, array("class" => "form-control", "placeholder" => "Content...")); ?>
        </div>
        <?php echo Form::submit("Create Post", array("class" => "btn btn-primary")); ?>

    <?php echo Form::close(); ?>
<?php $__env->stopSection(); ?>

<?php echo $__env->make('layouts.master', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>