@extends('layouts.master') @section('content')

{{ ucwords(Lang::get('news.create')) }}

{{ Form::open(array('route' => array('news.store'),'files' => true)) }} {{ Form::label('headline', ucwords(Lang::get('news.headline'))) }} {{ Form::text('headline',Input::old("headline"), array('placeholder' => ucfirst(Lang::get('news.headline')))) }} {{ Form::label('content', ucwords(Lang::get('news.content'))) }} {{ Form::textarea('content',Input::old("content"), array('placeholder' => ucfirst(Lang::get('news.content')))) }} {{ Form::submit(ucwords(Lang::get('news.add')), array('class' => 'button radius')) }} {{ Form::close() }}
@stop @section('js') @parent @stop