@extends('layouts.frontend') @section('content')
{{ trans('global.create') }} {{ trans('cruds.question.title_singular') }}
@method('POST') @csrf
@if($errors->has('test'))
{{ $errors->first('test') }}
@endif {{ trans('cruds.question.fields.test_helper') }}
@if($errors->has('question_text'))
{{ $errors->first('question_text') }}
@endif {{ trans('cruds.question.fields.question_text_helper') }}
@if($errors->has('question_image'))
{{ $errors->first('question_image') }}
@endif {{ trans('cruds.question.fields.question_image_helper') }}
@if($errors->has('points'))
{{ $errors->first('points') }}
@endif {{ trans('cruds.question.fields.points_helper') }}
@endsection @section('scripts') @endsection