51 lines
1.7 KiB
PHP
51 lines
1.7 KiB
PHP
@extends('web.layouts.layout')
|
|
|
|
@section('content')
|
|
|
|
@if ($errors->any())
|
|
<div class="row">
|
|
<div class="col-sm-12">
|
|
<div class="alert alert-danger">
|
|
<ul>
|
|
@foreach ($errors->all() as $error)
|
|
<li>{{ $error }}</li>
|
|
@endforeach
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@endif
|
|
|
|
{!! Form::open(['url' => route('web_promotion_store', $promotion_user->id), 'class' => 'form-horizontal form-prevent-multiple-submits', 'id' => 'user-promotion-form-validations']) !!}
|
|
|
|
<div class="layout-content">
|
|
|
|
<div class="container px-3">
|
|
|
|
<div class="container flex-grow-1 container-p-y pb-0">
|
|
<div class="media align-items-center pt-3 mb-3">
|
|
{{-- <img src="assets/img/avatars/5-small.png" alt="" class="d-block ui-w-100 rounded-circle"> --}}
|
|
<div class="media-body ml-4">
|
|
<h1 class="text-center">Super, geschafft!</h1>
|
|
<p class="text-center">
|
|
Ich danke Dir ..
|
|
</p>
|
|
<p class="text-center">Liebe Grüße,<br>{{ $promotion_user->user->getFullName() }}<br>Vertriebspartner:in der GRÜNEN SEELE Naturkosmetik</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="col-12 mb-4">
|
|
<hr class="">
|
|
</div>
|
|
@include('web.promotion._show_around')
|
|
</div>
|
|
</div>
|
|
{!! Form::close() !!}
|
|
|
|
|
|
<script>
|
|
$(document).ready(function() {
|
|
});
|
|
</script>
|
|
|
|
@endsection
|