@extends('layouts.layout-2')
@section('content')
@if ($errors->any())
@foreach ($errors->all() as $error)
- {{ $error }}
@endforeach
@endif
{{ __('navigation.my_promotions') }} / {{ __('bearbeiten') }}
{!! Form::open(['action' => route('user_promotion_detail', $user_promotion->id), 'class' => 'form-horizontal', 'id'=>"user-promotion-form-validations"]) !!}
{{ __('back') }}
@include('user.promotion.form')
{{ __('back') }}
{!! Form::close() !!}
@endsection