@extends('admin.layouts.app') @section('title') Promotions Management - Create @endsection @section('mainContent') @if(Session::has('message'))
{!! Session::get('message') !!}
@endif

Add Promotions

{!! Form::open([ 'route' => ['admin.promotions.store'], 'id' => 'InwordCreateForm', 'files' => 'true' ]) !!} @include('admin.pages.promotions.form')
{!! Form::close() !!}
@endsection