@extends('layouts.master') @section('content')

Settings: Administation

Careers Website Questionnaire

@if ($error = Session::get('error'))

{{ $error }}

@endif @if ($message = Session::get('message'))

{{ $message }}

@endif @if (count($errors) > 0)
Whoops! There were some problems with your input.

    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf
@if(!empty($questionnaire->getQuestions)) @foreach($questionnaire->getQuestions as $key => $question)
{{ $question->position }}
{{ $question->text }}
{{ $question->type}}
{{$question->required == '1' ? 'True' : 'False'}}
@endforeach @endif
@section('pagejs') @endsection @endsection