@extends('layouts.adminpages') @section('content')
Volver
{{ $question->exists ? 'Editar Pregunta' : 'Crear Pregunta' }}

@csrf @if($question->exists) @method('PUT') @endif
@if ($errors->has('title'))
{{ $errors->first('title') }}
@endif
@if ($errors->has('time_in_seconds'))
{{ $errors->first('time_in_seconds') }}
@endif
@if ($errors->has('status'))
{{ $errors->first('status') }}
@endif
@if ($errors->has('text_answer'))
{{ $errors->first('text_answer') }}
@endif
Cancelar
@endsection @section('scripts') @stop