@extends('layouts.admin') @section('content')
{{ trans('global.edit') }} {{ trans('cruds.question.title_singular') }}
id]) }}" enctype="multipart/form-data"> @method('PUT') @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