{!! Form::open(array('method' => 'post', 'class'=>'form-horizontal saveLabel','files' => true , 'parsley-validate'=>'','novalidate'=>' ')) !!} {!! Form::hidden('checkcoursereview', URL::to('course/submitreview') ) !!} @if(count($course)>0) @php $img = \bsetecHelpers::getImage($course->image, 'small'); $coursename = $course->course_title; @endphp @if($course->approved=='1') @php $text = Lang::get('core.Approved'); $ids = ''; $infotext = 'Your course is published. '; @endphp @elseif($course->approved=='2') @php $text = Lang::get('core.Approval'); $ids = 'submitcourse'; $infotext = 'Your course is not published. '; @endphp @elseif($course->approved=='0' || !$course->approved) @php $text = Lang::get('core.sb_review'); $ids = 'submitcourse'; $infotext = 'Your course is not published. '; @endphp @endif @endif
{!! $coursename or '' !!}

{!! $coursename or '' !!}

{!! $infotext or '' !!}

{!! Form::close() !!}