@extends('admin.layouts.master') @section('title','Edit Quiz-topic') @section('maincontent') @include('admin.layouts.topbar',$data) @if ($errors->any())
@foreach ($errors->all() as $error)
{{ $error }}
@endforeach
@endif
{{ __('Edit') }} {{ __('Quiz Topic') }}
{{ __('Back') }}
{{ csrf_field() }} {{ method_field('PUT') }}
{{ __('QuizTopic') }}:
*
{{ __('QuizDescription') }}:
*
{{ $topic->description }}
{{ __('PerQuestionMarks') }}:
*
{{ __('QuizTimer') }}:
*
{{ __('Days') }}:
({{ __('Days after quiz will start when user enroll in course') }})
{{ __('Status') }} :
status == '1' ? 'checked' : '' }} />
{{ __('QuizReattempt') }} :
quiz_again == '1' ? 'checked' : '' }} />
{{ __('Quiz Type') }} :
type == '1' ? 'checked' : '' }} />
{{ __('Reset') }}
{{ __('Update') }}
@endsection