@section('content')

Pages>{{ $title }}

{{ $title }}

@if($errors->has())
@foreach ($errors->all() as $row)
{{ $row }}
@endforeach
@endif {{ Form::model($page, $method) }}
Cancel
{{ Form::text('title', null, array('id' => 'input-title', 'placeholder' => 'Title', 'required' => 'true', 'class' => 'form-control')) }}
{{ Form::text('alias', null, array('id' => 'input-alias', 'placeholder' => 'URL', 'required' => 'true', 'class' => 'form-control')) }}
{{ Form::textarea('content', null, array('id' => 'redactor', 'placeholder' => 'Content', 'required' => 'true', 'class' => 'form-control')) }}
{{ Form::text('meta_title', null, array('id' => 'input-meta_title', 'placeholder' => 'Meta Title', 'class' => 'form-control')) }}
{{ Form::textarea('meta_description', null, array('id' => 'input-meta_description', 'placeholder' => 'Meta Description', 'class' => 'form-control', 'rows' => 3)) }}
{{ Form::text('meta_keywords', null, array('id' => 'input-meta_keywords', 'placeholder' => 'Meta Keywords', 'class' => 'form-control')) }}
{{ Form::select('is_active', array('1' => 'Yes', '0' => 'No'), null, array('id' => 'input-is_active', 'class' => 'form-control')) }}
Cancel
{{ Form::close() }} @endsection