@extends('layouts.app') @section('styles') @endsection @section('content')

{{ __('Add Question') }}

@csrf
@include('components.translatable-input', [ 'name' => 'question', 'type' => 'textarea', 'model' => null, 'rows' => 3, 'required' => true ]) @error('question')
{{ $message }}
@enderror
@include('components.translatable-input', [ 'name' => 'extra_content', 'type' => 'textarea', 'model' => null, 'rows' => 2 ]) {{ __('Additional information shown below the question') }}

{{ __('Cancel') }}
@endsection @push('scripts') @endpush