30 lines
1.1 KiB
PHP
30 lines
1.1 KiB
PHP
{!! 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() !!}
|
||
|
||
|