@extends('dashboard::layouts.app-user-toggling ') @section('app-user-content')
@if(gettype($pointInfo) == 'string')

{{ $pointInfo }}

@else
@if(!empty($pointInfo->profile) || $pointInfo->profile)

{{ trim(Auth::user()->name) }}, you have finished questionnaire, your profile is:

{{ $pointInfo->profile->name }}

@else

{{ trim(Auth::user()->name) }}, you have finished questionnaire. Result:

@endif
@if(!empty($pointInfo->profile)) @if(!$pointInfo->profile->images->isEmpty())
@endif @else @if(!$pointInfo->images->isEmpty())
@endif @endif
@if(!empty($pointInfo->profile))
{!! $pointInfo->profile->name !!}
{!! $pointInfo->profile->description !!}
@else
{!! $pointInfo->text_to_show !!}
@if(!empty($pointInfo->badge)) @if(!$pointInfo->badge->images->isEmpty())
@endif
{!! $pointInfo->badge->title !!}
{!! $pointInfo->badge->description !!}
@endif @endif
@include('dashboard::frontend.partials.button', ['name' => 'finish it', 'route' => route('app.last-step-questionnaire', [$hackathonSlug, $hackSlug, $questionnaireSlug])])
@endif
@endsection