@extends('admin.layouts.template') @section('page_heading','Crate') @section('content')
.
ระบบสารสนเทศ
{!! Form::open(array('route'=>'app.store','class' => 'form', 'novalidate' => 'novalidate', 'files' => true)) !!}
{!! Form::label('name','ชื่อระบบ') !!} {!! Form::text('name',null,['class'=>'form-control']) !!}
{!! Form::label('getting_start_years','ปี่ที่เริ่มใช้') !!} {!! Form::select('getting_start_years', array('' => '', '2559' => '2559','2558' => '2558','2557' => '2557', '2556' => '2556','2555' => '2555','2554' => '2554','2553' => '2553','2552' => '2552','2551' => '2551','2550' => '2550', '2549' => '2549','2548' => '2548','2547' => '2547','2546' => '2546','2545' => '2545','2544' => '2544','2543' => '2543', '2542' => '2542','2541' => '2541','2540' => '2540','2539' => '2539','2538' => '2538','2537' => '2537','2536' => '2536', '2535' => '2535','2534' => '2534' ,'2533' => '2533','2532' => '2532','2531' => '2531','2530' => '2530' ),null,['class'=>'form-control datar']) !!}
{!! Form::label('develop_language','ภาษาที่ใช้พัฒนา') !!} {!! Form::select('develop_language',['' => ''] + $lang, null, ['class' => 'form-control datar','id' => 'lang']) !!}
{!! Form::label('app_database','ฐานข้อมูล') !!} {!! Form::select('app_database',['' => ''] + $usedata, null, ['class' => 'form-control datar','id' => 'asd']) !!}
{!! Form::label('develop_company','บริษัทที่พัฒนา') !!} {!! Form::text('develop_company',null,['class'=>'form-control']) !!}
{!! Form::label('remark','รายละเอียด') !!} {!! Form::textarea('remark',null,['class'=>'form-control']) !!}
{!! Form::label('ma_cost','ค่าซ่อมบำรุง') !!} {!! Form::text('ma_cost',null,['class'=>'form-control']) !!}
{!! Form::label('data','ฐานข้อมูล') !!} {!! Form::file('data',null,['class'=>'form-control']) !!}
{!! Form::label('dic','พจนานุกรมฐานข้อมูล') !!} {!! Form::file('dic',null,['class'=>'form-control']) !!}
{!! Form::label('','ความสัมพันธ์') !!}
{!! Form::label('department_id','ระบบสารสนเทศ') !!}
ระบบสารสนเทศ
{!! Form::label('department_id','ข้อมูล') !!}
ข้อมูล
{!! Form::label('','เทคโนโลยี') !!}
เทคโนโลยี
{!! Form::label('department_id','หน่วยงานที่เกี่ยวข้อง') !!}
หน่วยงาน
{!! Form::hidden('department', null,['id' => 'department']) !!} {!! Form::hidden('app2', null,['id' => 'app2']) !!} {!! Form::hidden('data2', null,['id' => 'data2']) !!} {!! Form::hidden('bus2', null,['id' => 'bus2']) !!} {!! Form::hidden('tech2', null,['id' => 'tech2']) !!} {!! Form::hidden('lang2', null,['id' => 'lang2']) !!} {!! Form::hidden('devg2', null,['id' => 'devg2']) !!} {!! Form::hidden('lop2', null,['id' => 'lop2']) !!}
{!! Form::button('เพิ่มระบบสารสนเทศ',['type'=>'submit','class'=>'btn btn-primary','id' => 'add1']) !!} {{ link_to_route('app.index','ย้อนกลับ',null,['class'=>'btn btn-danger']) }}
{!! Form::close() !!}
@if($errors->any())
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@stop