@extends('admin.layouts.template') @section('content')
.
กระบวนการระดับ3
{!! Form::open(array('route'=>'lv3.store','class' => 'form', 'novalidate' => 'novalidate', 'files' => true)) !!}
{!! Form::label('name','ชื่อ') !!} {!! Form::text('name',null,['class'=>'form-control']) !!}
{!! Form::label('short','ตัวย่อ') !!} {!! Form::text('short',null,['class'=>'form-control']) !!}
{!! Form::label('remark','เพิ่มเติม') !!} {!! Form::text('remark',null,['class'=>'form-control']) !!}
{!! Form::label('lv2_id','ประเภทกระบวนการ') !!} {!! Form::select('lv2_id',['' => ''] + $lv, null, ['class' => 'form-control datar']) !!}
{!! Form::button('เพิ่มกระบวนการระดับ',['type'=>'submit','class'=>'btn btn-primary']) !!} {{ link_to_route('lv3.index','ย้อนกลับ',null,['class'=>'btn btn-danger']) }}
{!! Form::close() !!}
@if($errors->any())
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@stop