@php extension_loaded('zip') or die('PHP Zip extension not loaded.'); @endphp @extends('backend.layouts.app') @section('content')
{!! displayAlert() !!} @if ($errors->any()) @endif

{{ translate('Upload Questions Through Excel File') }}

@csrf
{{ translate('Download Question') }}
{{-- {{ translate('Download Level') }} --}}

{{ translate('Instruction For Uploading') }}

{{ translate('Level Type ID (Easy = 1, Medium = 2, Hard = 3), which is used to categorize the questions in the Excel file.') }}


{{translate('Download the Question Excel file to understand the pattern for uploading questions normally. In the Excel file, the "Level ID" column is used to differentiate categories.')}}

{{translate('Create Question And Answer!')}}

@csrf
@error('question') {{ $message }} @enderror
@error('level_type') {{ $message }} @enderror
@error('optionA') {{ $message }} @enderror
@error('optionB') {{ $message }} @enderror
@error('optionC') {{ $message }} @enderror
@error('answer') {{ $message }} @enderror
@endsection @section('script') @endsection