@extends('layouts.customadmin') @section('content')
{{ trans('global.create') }} {{ trans('cruds.questionOption.title_singular') }}
@csrf
{{ trans('cruds.questionOption.fields.question') }}
@foreach($questions as $id => $entry)
{{ $entry }}
@endforeach
@if($errors->has('question'))
{{ $errors->first('question') }}
@endif
{{ trans('cruds.questionOption.fields.question_helper') }}
{{ trans('cruds.questionOption.fields.option_text') }}
@if($errors->has('option_text'))
{{ $errors->first('option_text') }}
@endif
{{ trans('cruds.questionOption.fields.option_text_helper') }}
{{ trans('cruds.questionOption.fields.is_correct') }}
@if($errors->has('is_correct'))
{{ $errors->first('is_correct') }}
@endif
{{ trans('cruds.questionOption.fields.is_correct_helper') }}
{{ trans('global.save') }}
@endsection