mein-sterntours/resources/views/travel/content/modal_copy.blade.php
2023-07-03 10:10:09 +02:00

30 lines
1.1 KiB
PHP
Raw 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.

{!! Form::open([ 'url' => route('travel_content_update'), 'method' => 'post', 'class' => 'modal-content' ]) !!}
{{ Form::hidden('action', 'page-copy') }}
{{ Form::hidden('step', false) }}
{{ Form::hidden('id', $value->id) }}
<div class="modal-header">
<h5 class="modal-title">Neue Unterseite <span class="font-weight-light">kopieren/anlegen</span></h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">×</button>
</div>
<div class="modal-body">
<div class="form-row">
<label class="form-label" for="page_copy_id">kopieren aus Unterseite</label>
<select class="custom-select" name="page_copy_id" id="page_copy_id">
@foreach($value->child_pages as $child_page)
<option value="{{$child_page->id}}">{{$child_page->title}}</option>
@endforeach
</select>
</div>
<hr>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">{{__('close')}}</button>
<button type="submit" class="btn btn-primary submit-button-form">{{__('save')}}</button>
</div>
{!! Form::close() !!}