@extends('web.layouts.layout') @section('content') @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif {!! Form::open(['url' => route('web_promotion_store', $promotion_user->id), 'class' => 'form-horizontal form-prevent-multiple-submits', 'id' => 'user-reminder-form-validations']) !!}
@include('web.promotion._intro')
@include('web.promotion._reminder_service') @include('web.promotion._show_around')
{!! Form::close() !!} @endsection