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