@extends('admin.master') @section('title') Supplier Invoice Create @endsection @section('sideMenuTitle') Supplier Invoice @endsection @section('bodyContent')
@if(Session::has('message'))

{{Session::get('message')}}

@endif @if(Session::has('error'))

{{Session::get('error')}}

@endif @if ($errors->any())
@endif

@if (!isset($editData)) {!! Form::open(['url' => 'supplier/invoice', 'method' => 'post', 'name' => 'form', 'enctype' => 'multipart/form-data', 'role' => 'form']) !!} @endif
{!! Form::close() !!}
@endsection