epung

create.blade.php

May 27th, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.35 KB | None | 0 0
  1. @extends('template')
  2. @section('main')
  3.  
  4.  
  5.  
  6. <div id="karyawan" >
  7.     <h2>Tambah Karyawan</h2>
  8.  
  9. <!--    @include('errors.form_error_list') -->
  10.  
  11.     {!! Form::open(['url' => 'karyawan','files'=>true]) !!}
  12.  
  13. @include('chapter8.form', ['submitButton' => 'Tambah Karyawan'])
  14.  
  15.     {!! Form::close() !!}
  16. </div>
  17. @stop
  18.  
  19. @section('footer')
  20.     @include('footer')
  21. @stop
Advertisement
Add Comment
Please, Sign In to add comment