@extends('layouts.frontend') @section('content')
{{ trans('global.create') }} {{ trans('cruds.questionOption.title_singular') }}
@method('POST') @csrf
@if($errors->has('question'))
{{ $errors->first('question') }}
@endif {{ trans('cruds.questionOption.fields.question_helper') }}
@if($errors->has('option_text'))
{{ $errors->first('option_text') }}
@endif {{ trans('cruds.questionOption.fields.option_text_helper') }}
@if($errors->has('is_correct'))
{{ $errors->first('is_correct') }}
@endif {{ trans('cruds.questionOption.fields.is_correct_helper') }}
@endsection