tambah.blade.php
2.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{!! Form::open(array('id' => 'formAptika', 'route' => ['yurisprudensi.store'], 'class' => 'form account-form', 'method' => 'post')) !!}
<div class="row">
<div class="col-md-12">
<p>
{!! Form::label('dih_id', 'Kode DIH', array('class' => 'col-md-6 control-label')) !!}
{!! Form::select('dih_id', $dih, NULL, array('id' => 'dih_id', 'class' => 'form-control', 'placeholder' => 'Kode DIH')) !!}
</p>
<p>
{!! Form::label('nomor', 'Nomor Yurisprudensi', array('class' => 'col-md-6 control-label')) !!}
{!! Form::text('nomor', NULL, array('id' => 'nomor', 'class' => 'form-control', 'placeholder' => 'Nomor Yurisprudensi Produk Hukum')) !!}
</p>
<p>
{!! Form::label('judul', 'Judul Yurisprudensi', array('class' => 'col-md-6 control-label')) !!}
{!! Form::text('judul', NULL, array('id' => 'judul', 'class' => 'form-control', 'placeholder' => 'Judul Ysurisprudensi Produk Hukum')) !!}
</p>
<p>
{!! Form::label('teu', 'Tajuk Entry Utama', array('class' => 'col-md-6 control-label')) !!}
{!! Form::text('teu', NULL, array('id' => 'teu', 'class' => 'form-control', 'placeholder' => 'TEU Orang/Badan')) !!}
</p>
<p>
{!! Form::label('subjek', 'Subjek Yurisprudensi', array('class' => 'col-md-6 control-label')) !!}
{!! Form::text('subjek', NULL, array('id' => 'jenis', 'class' => 'form-control', 'placeholder' => ' Yurisprudensi/ Putusan Peradilan Tentang')) !!}
</p>
<p>
{!! Form::label('tanggal_terbit', 'Tanggal Terbit', array('class' => 'col-md-6 control-label')) !!}
{!! Form::date('tanggal_terbit', NULL, array('id' => 'tanggal_terbit', 'class' => 'form-control', 'placeholder' => 'Tanggal Terbit')) !!}
</p>
<p>
{!! Form::label('tempat_terbit', 'Tempat Terbit', array('class' => 'col-md-6 control-label')) !!}
{!! Form::text('tempat_terbit', NULL, array('id' => 'tempat_terbit', 'class' => 'form-control', 'placeholder' => 'Tempat Terbit')) !!}
</p>
</div>
{{-- {!! Form::hidden('provinsi_id', NULL, array('id' => 'provinsi_id')) !!} --}}
</div>
{!! Form::close() !!}
@include('layouts.backend.ajax_form')