@extends('layouts.main') @section('content')
{{ Form::open(['url' => 'examinee/mslexec1/' . $next, 'method' => 'POST', 'name' => 'form', 'id' => 'searchform']) }}
トレイニ―研修社員Ⅱ~副主務考査
{{-- 通知メッセージ --}} @if (session()->has('errors'))
@endif
{{ $question->title }}
{{ $question->question }}
@foreach ($answers as $answer)
{{$answer->contents}}

回答:{{ Form::text("answer" ,'' , ["class"=>"validate[required]", "id"=>"answer", "align"=>"left"]) }}  @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