@extends('layouts.main') @section('content')
{{ Form::open(['url' => 'examinee/examexec/' . $next, 'method' => 'POST', 'name' => 'form', 'id' => 'searchform']) }}
{{ $header->name }}
{{-- 通知メッセージ --}} @if (session()->has('errors'))
@endif

{{ $detail->question }}


@foreach ($question as $value) {{ $value->title }}

{!! $value->contents !!}


   
{{ Form::text("answer" , ' ' , ["class"=>"validate[required]", "id"=>"answer"]) }}
@endforeach

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