@extends('admin.layouts.template') @section('content')
.
กระบวนการระดับ1
{!! Form::open(array('route'=>'lv1.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('select_lv','ระดับสุดท้าย') !!} {!! Form::select('select_lv', ['0' => 'ระดับ 4', '3' => 'ระดับ 3', '2' => 'ระดับ 2']); !!}
{!! Form::button('เพิ่มกระบวนการระดับที่ 1',['type'=>'submit','class'=>'btn btn-primary']) !!} {{ link_to_route('lv1.index','ย้อนกลับ',null,['class'=>'btn btn-danger']) }}
{!! Form::close() !!}
@if($errors->any())
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@stop