@extends('app') @section('title', 'Validation ') @section('head') @endsection @section('content')

{!!__('validation questions')!!}

{!!__('Throughout the course, you will be asked a series of personal validation questions. They are intended to verify your identity and confirm the individual taking our course is the same person who enrolled. These questions are mandated by the Texas Alcoholic Beverage Commission (TABC) and we’re required to follow strict guidelines in administering them. Per TABC rules, any student who answers more than 30% of the validation questions incorrectly will be required to start the course over from the beginning.')!!}

{!! Form::open([ 'url' => '/validation', 'class' => '']) !!} @include("includes/front_alerts") @foreach ($questions as $question)

{{ unescape($question->question) }}


@foreach ($answers as $answer)
@endforeach @endforeach
{!! FORM::close() !!}
@endsection @section('foot') @endsection