@extends('admin.layouts.template') @section('page_heading','Crate') @section('content')
.
บริษัทที่พัฒนา
{!! Form::open(array('route'=>'devg.store','class' => 'form', 'novalidate' => 'novalidate', 'files' => true)) !!}
{!! Form::label('name','ชื่อ') !!} {!! Form::text('name',null,['class'=>'form-control']) !!}
{!! Form::button('เพิ่มบริษัทที่พัฒนา',['type'=>'submit','class'=>'btn btn-primary']) !!}
{!! Form::close() !!}
@if($errors->any())
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@stop