Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion resources/views/backend/event/create.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

{!! html()->form('POST', route('informasi.event.store'))->id('form-event')->class(
'form-horizontal
form-label-left',
form-label-left',
)->open() !!}
@include('layouts.fragments.error_message')

Expand Down
2 changes: 1 addition & 1 deletion resources/views/backend/event/form_edit.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<div class="col-md-6 col-sm-8 col-xs-12">
{!! html()->textarea('description', old('description', $event->description))->class('textarea my-editor')->placeholder('Deskripsi kegiatan')->style(
'width: 100%; height: 200px; font-size: 14px; line-height: 18px; border: 1px solid #dddddd; padding:
10px;',
10px;',
)->required() !!}
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion resources/views/backend/themes/import.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

{!! html()->form()->route('setting.themes.do-upload')->method('POST')->id('form-import')->class(
'form-horizontal
form-label-left',
form-label-left',
)->acceptsFiles() !!}

<div class="box-body">
Expand Down
2 changes: 1 addition & 1 deletion resources/views/data/aki_akb/import.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

{!! html()->form('POST', route('data.aki-akb.do_import'))->id('form-import')->class(
'form-horizontal
form-label-left',
form-label-left',
)->acceptsFiles()->open() !!}

<div class="box-body">
Expand Down
2 changes: 1 addition & 1 deletion resources/views/data/anggaran_desa/import.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

{!! html()->form()->route('data.anggaran-desa.do_import')->method('POST')->id('form-import')->class(
'form-horizontal
form-label-left',
form-label-left',
)->acceptsFiles() !!}

<div class="box-body">
Expand Down
2 changes: 1 addition & 1 deletion resources/views/data/anggaran_realisasi/import.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

{!! html()->form()->route('data.anggaran-realisasi.do_import')->method('POST')->id('form-import')->class(
'form-horizontal
form-label-left',
form-label-left',
)->acceptsFiles() !!}

<div class="box-body">
Expand Down
2 changes: 1 addition & 1 deletion resources/views/data/data_desa/create.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

{!! html()->form()->route('data.data-desa.store')->method('POST')->id('form-datadesa')->class(
'form-horizontal
form-label-left',
form-label-left',
)->open() !!}

<div class="box-body">
Expand Down
2 changes: 1 addition & 1 deletion resources/views/data/data_sarana/create.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

{!! html()->form('POST', route('data.data-sarana.store'))->id('form-sarana')->class(
'form-horizontal
form-label-left',
form-label-left',
)->open() !!}

<div class="box-body">
Expand Down
2 changes: 1 addition & 1 deletion resources/views/data/data_sarana/edit.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

{!! html()->form('POST', route('data.data-sarana.update', $sarana->id))->id('form-sarana')->class(
'form-horizontal
form-label-left',
form-label-left',
)->open() !!}
@method('PUT')

Expand Down
2 changes: 1 addition & 1 deletion resources/views/data/data_sarana/import.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

{!! html()->form('POST', route('data.data-sarana.import-excel'))->id('form-import')->class(
'form-horizontal
form-label-left',
form-label-left',
)->acceptsFiles()->open() !!}

<div class="box-body">
Expand Down
2 changes: 1 addition & 1 deletion resources/views/data/data_suplemen/create.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

{!! html()->form('POST', route('data.data-suplemen.store'))->id('form-faq')->class(
'form-horizontal
form-label-left',
form-label-left',
)->open() !!}

<div class="box-body">
Expand Down
4 changes: 2 additions & 2 deletions resources/views/data/data_suplemen/form.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
<div class="col-md-6 col-sm-6 col-xs-12">
{!! html()->textarea('keterangan')->class('textarea')->style(
'width: 100%; height: 200px; font-size: 14px;
line-height: 18px; border: 1px solid #dddddd; padding:
10px;',
line-height: 18px; border: 1px solid #dddddd; padding:
10px;',
)->placeholder('Keterangan')->value(old('keterangan', isset($suplemen) ? $suplemen->keterangan : '')) !!}
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion resources/views/data/data_suplemen/form_detail.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
<div class="form-group">
<label class="control-label col-md-3 col-sm-3 col-xs-12" for="penduduk_id">{{ $suplemen->sasaran == 2
? 'Nama Kepala
Keluarga'
Keluarga'
: 'Nama Penduduk' }}</label>

<div class="col-md-6 col-sm-6 col-xs-12">
Expand Down
36 changes: 18 additions & 18 deletions resources/views/data/data_umum/form_edit.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<div class="col-md-6 col-sm-6 col-xs-12">
{!! html()->textarea('tipologi')->class(
'form-control
my-editor',
my-editor',
)->placeholder('Tipologi')->rows(2)->value(old('tipologi', isset($data_umum) ? $data_umum->tipologi : '')) !!}
</div>
</div>
Expand All @@ -26,7 +26,7 @@
<div class="col-md-6 col-sm-6 col-xs-12">
{!! html()->textarea('sejarah')->class(
'form-control
my-editor',
my-editor',
)->placeholder('Sejarah')->rows(2)->value(old('sejarah', isset($data_umum) ? $data_umum->sejarah : '')) !!}
</div>
</div>
Expand All @@ -37,7 +37,7 @@
<div class="col-md-6 col-sm-6 col-xs-12">
{!! html()->number('ketinggian')->class(
'form-control
text-right',
text-right',
)->placeholder('0')->value(old('ketinggian', isset($data_umum) ? $data_umum->ketinggian : '')) !!}
</div>
</div>
Expand All @@ -53,7 +53,7 @@
<div class="col-md-7">
{!! html()->number('luas_wilayah')->class(
'form-control
luas_wilayah text-right',
luas_wilayah text-right',
)->placeholder('0')->value(old('luas_wilayah', isset($data_umum) ? $data_umum->luas_wilayah : '')) !!}
</div>
</div>
Expand All @@ -68,7 +68,7 @@
<div class="col-md-6 col-sm-6 col-xs-12">
{!! html()->textarea('bts_wil_utara')->class('form-control')->placeholder(
'Batas
Utara',
Utara',
)->rows(2)->value(old('bts_wil_utara', isset($data_umum) ? $data_umum->bts_wil_utara : '')) !!}
</div>
</div>
Expand All @@ -78,7 +78,7 @@
<div class="col-md-6 col-sm-6 col-xs-12">
{!! html()->textarea('bts_wil_timur')->class('form-control')->placeholder(
'Batas
Timur',
Timur',
)->rows(2)->value(old('bts_wil_timur', isset($data_umum) ? $data_umum->bts_wil_timur : '')) !!}
</div>
</div>
Expand All @@ -88,7 +88,7 @@
<div class="col-md-6 col-sm-6 col-xs-12">
{!! html()->textarea('bts_wil_selatan')->class('form-control')->placeholder(
'Batas
Selatan',
Selatan',
)->rows(2)->value(old('bts_wil_selatan', isset($data_umum) ? $data_umum->bts_wil_selatan : '')) !!}
</div>
</div>
Expand All @@ -98,7 +98,7 @@
<div class="col-md-6 col-sm-6 col-xs-12">
{!! html()->textarea('bts_wil_barat')->class('form-control')->placeholder(
'Batas
Barat',
Barat',
)->rows(2)->value(old('bts_wil_barat', isset($data_umum) ? $data_umum->bts_wil_barat : '')) !!}
</div>
</div>
Expand All @@ -113,7 +113,7 @@
<div class="col-md-6 col-sm-6 col-xs-12">
{!! html()->number('jml_puskesmas')->class(
'form-control
text-right',
text-right',
)->placeholder('0')->value(old('jml_puskesmas', isset($data_umum) ? $data_umum->jml_puskesmas : '')) !!}
</div>
</div>
Expand All @@ -124,7 +124,7 @@
<div class="col-md-6 col-sm-6 col-xs-12">
{!! html()->number('jml_puskesmas_pembantu')->class(
'form-control
text-right',
text-right',
)->placeholder('0')->value(old('jml_puskesmas_pembantu', isset($data_umum) ? $data_umum->jml_puskesmas_pembantu : '')) !!}
</div>
</div>
Expand All @@ -135,7 +135,7 @@
<div class="col-md-6 col-sm-6 col-xs-12">
{!! html()->number('jml_posyandu')->class(
'form-control
text-right',
text-right',
)->placeholder('0')->value(old('jml_posyandu', isset($data_umum) ? $data_umum->jml_posyandu : '')) !!}
</div>
</div>
Expand All @@ -146,7 +146,7 @@
<div class="col-md-6 col-sm-6 col-xs-12">
{!! html()->number('jml_pondok_bersalin')->class(
'form-control
text-right',
text-right',
)->placeholder('0')->value(old('jml_pondok_bersalin', isset($data_umum) ? $data_umum->jml_pondok_bersalin : '')) !!}
</div>
</div>
Expand All @@ -159,7 +159,7 @@
<div class="col-md-6 col-sm-6 col-xs-12">
{!! html()->number('jml_paud')->class(
'form-control
text-right',
text-right',
)->placeholder('0')->value(old('jml_paud', isset($data_umum) ? $data_umum->jml_paud : '')) !!}
</div>
</div>
Expand Down Expand Up @@ -196,7 +196,7 @@
<div class="col-md-6 col-sm-6 col-xs-12">
{!! html()->number('jml_masjid_besar')->class(
'form-control
text-right',
text-right',
)->placeholder('0')->value(old('jml_masjid_besar', isset($data_umum) ? $data_umum->jml_masjid_besar : '')) !!}
</div>
</div>
Expand All @@ -207,7 +207,7 @@
<div class="col-md-6 col-sm-6 col-xs-12">
{!! html()->number('jml_mushola')->class(
'form-control
text-right',
text-right',
)->placeholder('0')->value(old('jml_mushola', isset($data_umum) ? $data_umum->jml_mushola : '')) !!}
</div>
</div>
Expand All @@ -218,7 +218,7 @@
<div class="col-md-6 col-sm-6 col-xs-12">
{!! html()->number('jml_gereja')->class(
'form-control
text-right',
text-right',
)->placeholder('0')->value(old('jml_gereja', isset($data_umum) ? $data_umum->jml_gereja : '')) !!}
</div>
</div>
Expand All @@ -229,7 +229,7 @@
<div class="col-md-6 col-sm-6 col-xs-12">
{!! html()->number('jml_pasar')->class(
'form-control
text-right',
text-right',
)->placeholder('0')->value(old('jml_pasar', isset($data_umum) ? $data_umum->jml_pasar : '')) !!}
</div>
</div>
Expand All @@ -240,7 +240,7 @@
<div class="col-md-6 col-sm-6 col-xs-12">
{!! html()->number('jml_balai_pertemuan')->class(
'form-control
text-right',
text-right',
)->placeholder('0')->value(old('jml_balai_pertemuan', isset($data_umum) ? $data_umum->jml_balai_pertemuan : '')) !!}
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion resources/views/data/epidemi_penyakit/import.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

{!! html()->form('POST', route('data.epidemi-penyakit.do_import'))->id('form-import')->class(
'form-horizontal
form-label-left',
form-label-left',
)->acceptsFiles()->open() !!}

<div class="box-body">
Expand Down
2 changes: 1 addition & 1 deletion resources/views/data/fasilitas_paud/import.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<!-- form start -->
{!! html()->form('POST', route('data.fasilitas-paud.do_import'))->id('form-import')->class(
'form-horizontal
form-label-left',
form-label-left',
)->acceptsFiles()->open() !!}

<div class="box-body">
Expand Down
2 changes: 1 addition & 1 deletion resources/views/data/imunisasi/import.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

{!! html()->form()->route('data.imunisasi.do_import')->method('POST')->id('form-import')->class(
'form-horizontal
form-label-left',
form-label-left',
)->acceptsFiles()->open() !!}

<div class="box-body">
Expand Down
2 changes: 1 addition & 1 deletion resources/views/data/jabatan/create.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

{!! html()->form('POST', route('data.jabatan.store'))->id('form-jabatan')->class(
'form-horizontal
form-label-left',
form-label-left',
)->open() !!}
@include('layouts.fragments.error_message')

Expand Down
2 changes: 1 addition & 1 deletion resources/views/data/jabatan/form.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

<div class="col-md-6 col-sm-6 col-xs-12">
{!! html()->textarea('tupoksi')->value(old('tupoksi', isset($jabatan) ? $jabatan->tupoksi : ''))->class('textarea')->placeholder('Tupoksi')->style('width: 100%; height: 200px; font-size: 14px;
line-height: 18px; border: 1px solid #dddddd; padding: 10px;') !!}
line-height: 18px; border: 1px solid #dddddd; padding: 10px;') !!}
</div>
</div>
<div class="ln_solid"></div>
Expand Down
2 changes: 1 addition & 1 deletion resources/views/data/laporan-apbdes/import.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

{!! html()->form('POST', route('data.laporan-apbdes.do_import'))->id('form-import')->class(
'form-horizontal
form-label-left',
form-label-left',
)->acceptsFiles()->open() !!}

<div class="box-body">
Expand Down
2 changes: 1 addition & 1 deletion resources/views/data/laporan-penduduk/import.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<div class="box box-primary">
{!! html()->form('POST', route('data.laporan-penduduk.do_import'))->id('form-import')->class(
'form-horizontal
form-label-left',
form-label-left',
)->acceptsFiles()->open() !!}

<div class="box-body">
Expand Down
2 changes: 1 addition & 1 deletion resources/views/data/lembaga/create.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

{!! html()->form('POST', route('data.lembaga.store'))->id('form-lembaga')->class(
'form-horizontal
form-label-left',
form-label-left',
)->open() !!}
@include('layouts.fragments.error_message')

Expand Down
4 changes: 2 additions & 2 deletions resources/views/data/lembaga_anggota/form_create.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<div style="display: flex; flex-direction: column;">
{!! html()->select('penduduk_id', $pendudukList)->value(old('penduduk_id', isset($anggota) ? $anggota->penduduk_id : (isset($lembaga) ? $lembaga->penduduk_id : '')))->class(
'form-control
select2',
select2',
)->placeholder('Pilih Nama Anggota')->required()->style('width:100%;') !!}
</div>
</div>
Expand Down Expand Up @@ -67,7 +67,7 @@
<div class="col-md-6 col-sm-6 col-xs-12">
{!! html()->date('tgl_sk_pengangkatan', old('tgl_sk_pengangkatan'))->placeholder(
'Tanggal SK
Pengangkatan',
Pengangkatan',
)->class('form-control') !!}
</div>
</div>
Expand Down
Loading