@section('content')
{{ HTML::style('css/ui/jquery-ui-1.10.3.custom.min.css') }}
@section('scripts')
@stop
Insights>{{ $title }}
{{ $title }}
@if($errors->has())
@foreach ($errors->all() as $row)
{{ $row }}
@endforeach
@endif
{{ Form::model($insights, $method) }}
{{ Form::select('category_id', $categories, null, array('id' => 'input-category', 'required' => 'true', 'class' => 'form-control')) }}
{{ Form::text('title', null, array('id' => 'input-title', 'placeholder' => 'Title', 'required' => 'true', 'class' => 'form-control')) }}
{{ Form::select('author_id', $authors, null, array('id' => 'input-author_id', 'required' => 'true', 'class' => 'form-control')) }}
{{ Form::text('created_at', $date, array('id' => 'date', 'placeholder' => 'Date', 'class' => 'form-control')) }}
{{ Form::textarea('content', null, array('id' => 'redactor', 'placeholder' => 'Content', 'required' => 'true', 'class' => 'form-control')) }}
{{ Form::text('position', null, array('id' => 'input-position', 'placeholder' => 'Position', 'class' => 'form-control')) }}
{{ Form::select('is_active', array('1' => 'Yes', '0' => 'No'), null, array('id' => 'input-is_active', 'class' => 'form-control')) }}
{{ Form::close() }}
@endsection