Skip to content
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 @@ -54,7 +54,7 @@
<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
Loading