@extends('admin.layouts.template') @section('page_heading','Crate') @section('content')
.
ข้อมูล
{!! Form::open(array('route'=>'dat.store','class' => 'form', 'novalidate' => 'novalidate', 'files' => true)) !!}
{!! Form::label('name','ชื่อข้อมูล') !!} {!! Form::text('name',null,['class'=>'form-control']) !!}
{!! Form::label('remark','รายละเอียด') !!} {!! Form::textarea('remark',null,['class'=>'form-control']) !!}
{!! Form::label('','ความสัมพันธ์') !!}
{!! Form::label('department_id','ระบบสารสนเทศ') !!}
ระบบสารสนเทศ
{!! Form::label('','กระบวนการ') !!}
กระบวนการ
{!! Form::label('','ประเภทการจัดเก็บ') !!}
ประเภทการจัดเก็บ
{!! Form::hidden('app2', null,['id' => 'app2']) !!} {!! Form::hidden('bus2', null,['id' => 'bus2']) !!} {!! Form::hidden('tech2', null,['id' => 'tech2']) !!}
{!! Form::button('เพิ่มข้อมูล',['type'=>'submit','class'=>'btn btn-primary','id'=>'add1']) !!} {{ link_to_route('dat.index','ย้อนกลับ',null,['class'=>'btn btn-danger']) }}
{!! Form::close() !!}
@if($errors->any())
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@stop