@extends('layouts.compact_menu') {{-- Page title --}} @section('title') Invoice Mapping @parent @stop @section('header_styles') @stop @section('content')
@include('flash::message')
Invoice Mapping
{!! Form::model($InvoiceMappings, ['route' => ['invoice_mapping.update', $InvoiceMappings->id], 'method' => 'patch','class' => 'form-horizontal']) !!}
Level
@error('level_new')
{{ $message }}
@enderror
Label
@foreach($boards as $board)
{{$board->name}}
Swimlane
Stages
@endforeach
{!! Form::close() !!}
@endsection @section('footer_scripts') @stop