@extends('admin.layouts.master') @section('title') Get Started | Admin Panel @endsection @section('content')
{{-- Display success message --}} @if(session('success'))
{{ session('success') }}
@endif {{-- Display error message --}} @if(session('error'))
{{ session('error') }}
@endif
{{-- Where Did You Hear Fuji --}}
@include('admin.pages.getstart.partials._fuji', ['records' => $recordsWhereDidYouHearFuji])
{{-- Why Are You Learning --}}
@include('admin.pages.getstart.partials._learning', ['records' => $recordsWhyAreYouLearning])
{{-- Daily Learning Goals --}}
@include('admin.pages.getstart.partials._goals', ['records' => $recordsDailyLearningGoal])
{{-- Language List --}}
@include('admin.pages.getstart.partials._language', ['records' => $recordsLanguageList])
{{-- Total Level --}}
@include('admin.pages.getstart.partials._level', ['records' => $recordsCourseGoalManage])
{{-- Study Daily Time --}}
@include('admin.pages.getstart.partials._studytime', ['records' => $recordsStudyDailyTime])
@endsection