@if(module_is_active('Account'))
{{ Form::label('account_id', __('Account'),['class'=>'form-label']) }}
{{ Form::select('account_id',$accounts,null, array('class' => 'form-control', 'required'=>'required','placeholder'=>'Select Account')) }}
@endif
{{ Form::label('description', __('Description'),['class'=>'form-label']) }}
{{ Form::textarea('description', '', array('class' => 'form-control','rows'=>3, 'placeholder'=>'Enter Description')) }}