@extends('_layout.layout') @section('title') Create new article @endsection @section('header')

{{$company->name}} Create new article

@endsection @section('content') @include('_layout.partials.formerror')
Article details
{!! Form::open(['route' => ['postCreateArticle',$company->id],'class' => 'form-horizontal']) !!}
{!! Form::text('title', null, ['class' => 'form-control','required' => 'required','placeholder' => 'Article title']) !!}
{!! Form::close() !!}
@endsection @section('page-script') @endsection @section('page-css') @endsection