@section('content')
Investor education>{{ $title }}
{{ $title }}
@if($errors->has())
@foreach ($errors->all() as $row)
{{ $row }}
@endforeach
@endif
{{ Form::model($investor_education, $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::textarea('description', null, array('id' => 'input-description', 'placeholder' => 'Description', 'required' => 'true', 'class' => 'form-control')) }}
{{ Form::select('is_active', array('1' => 'Yes', '0' => 'No'), null, array('id' => 'input-is_active', 'class' => 'form-control')) }}
{{ Form::close() }}
@endsection