@extends('app')
@section('content')
@if(Session::has('flash_message'))
{!! Session::get('flash_message') !!}
@endif
{!! Breadcrumbs::render('admin.wedding-types.index') !!}
@if(Auth::user()->can('wedding-types-create'))
Add a Wedding Type
@endif
@if(Auth::user()->can('wedding-types-destroy'))
Delete
@endif
{!! Form::open([
'method' => 'POST',
'class' => 'inline',
'id'=> 'bulkaction'
]) !!}
{!! Form::close() !!}
@endsection