@extends('layouts.frontend') @section('title', 'My Profile') @section('content')
assignment

My Profile

{{ $total_attempted }} 

Quiz Attempted

{{ $total_score }} 

Total Score

JDQ
{{ auth()->user()->name }}

{{ auth()->user()->mobile_number }}

{{ auth()->user()->email }}

{{ $first_rank }}

1st Place

{{ $second_rank }}

2nd Place

{{ $third_rank }}

3rd Place

{{ $participated_rank }}

Participated

My Participants

@forelse ($my_ranking as $quiz_detail) @empty @endforelse
Quiz Title Org Name Score Ranking Action
{{ $quiz_detail->quiz->title }} {{ $quiz_detail->quiz->organization->title }} {{ $quiz_detail->score }} {{ $quiz_detail->rank }} remove_red_eye
Result
No Quiz attempted yet.
ξΆ”

Quiz

@csrf
@if ($errors->has('name'))
{{ $errors->first('name') }}
@endif
@if ($errors->has('email'))
{{ $errors->first('email') }}
@endif
@csrf
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
@csrf
{{-- ---------------------- --}}
{{ trans('global.my_profile') }}
{{ trans('global.change_password') }}
{{ trans('global.delete_account') }}
@if (Route::has('frontend.profile.toggle-two-factor'))
{{ trans('global.two_factor.title') }}
@csrf
@endif
@endsection