{!! Form::open(['action' => '\App\Http\Controllers\DocumentAndNoteController@store', 'id' => 'docus_notes_form', 'method' => 'post']) !!}
{!! Form::hidden('notable_id', $notable_id, ['class' => 'form-control']) !!}
{!! Form::hidden('notable_type', $notable_type, ['class' => 'form-control']) !!}
{!! Form::label('heading', __('lang_v1.heading') . ':*' )!!}
{!! Form::text('heading', null, ['class' => 'form-control', 'required' ]) !!}
{!! Form::label('description', __('lang_v1.description') . ':') !!}
{!! Form::textarea('description', null, ['class' => 'form-control ', 'id' => 'docs_note_description']); !!}