@extends('layouts.main') @section('content')
{{ Form::open(['url' => 'examinee/mslexec2/' . $next, 'method' => 'POST', 'name' => 'form', 'id' => 'searchform']) }}
MSL適性検査試験2
{{-- 通知メッセージ --}} @if (session()->has('errors'))
@endif
{{ $question->question }}
@foreach ($answers as $answer) {{ Form::radio("answer" , $i ,'' , ["class"=>"validate[required]", "id"=>"answer" . $i]) }}      @endforeach

@if ($id == 66) {{ Form::submit("   完了   ", ["class"=>"btn btn-success", "onClick" => "execUpdate();"]) }}  @else {{ Form::submit("   次へ   ", ["class"=>"btn btn-success"]) }}  @endif @if ($id <> 27) {{ Form::submit("   戻る   ", ["class"=>"btn btn-default", "onClick" => "execBack();"]) }} @endif
{!! Form::close() !!}
@endsection