mein-sterntours/resources/views/booking/edit_notice_modal.blade.php
2021-05-07 17:44:02 +02:00

31 lines
No EOL
1.2 KiB
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">
{{ __('Notiz') }}
<span class="font-weight-light">bearbeiten</span>
</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">×</button>
</div>
{!! Form::open(['url' => $data['url'], 'class' => '', 'id'=>'edit-notice-form']) !!}
{{ Form::hidden('booking_id', $data['booking_id']) }}
{{ Form::hidden('action', $data['action']) }}
{{ Form::hidden('notice_id', $data['id']) }}
<div class="modal-body">
<div class="form-group">
<label for="booking_notice" class="form-label">{{ __('Notiz') }}</label>
{{ Form::textarea('booking_notice', $value->message, array('placeholder'=>__('Notiz bearbeiten'), 'class'=>'form-control', 'rows'=>8)) }}
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">schließen</button>
<button type="submit" class="btn btn-primary" name="update-action" value="save-edit-notice">speichern</button>
</div>
{!! Form::close() !!}
</div>
<script type="text/javascript">
</script>