@extends('main')
@section('title', '| Tworzenie nowego posta')
@section('stylesheets')
{!! Html::style('css/parsley.css') !!}
{!! Html::style('css/select2.min.css') !!}
@endsection
@section('content')
Tworzenie nowego posta
{!! Form::open(array('route' => 'posts.store' , 'data-parsley-validate')) !!}
{{ Form::label('title' , 'Tytuł:') }}
{{ Form::text('title' , null , array('class' => 'form-control' , 'required' => '' , 'maxlength' => '255')) }}
{{ Form::label('slug' , 'Slug:') }}
{{ Form::text('slug', null , array('class' =>'form-control' , 'required' => '' , 'minlenght' => '5' , 'maxlength' => '255') )}}
{{ Form::label('category_id' , 'Kategoria:') }}
{{ Form::label('tags' , 'Tagi:') }}
{{ Form::label('body' , "Post:") }}
{{ Form::textarea('body' , null , array('class' => 'form-control')) }}
{{ Form::submit('Stwórz Post' , array('class' => 'btn btn-success btn-lg btn-block' , 'style' => 'margin-top: 20px;')) }}
{!! Form::close() !!}
@endsection
@section('scripts')
{!! Html::script('js/parsley.min.js') !!}
{!! Html::script('js/select2.min.js') !!}
@endsection