1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-22 01:11:34 +02:00
invoiceninja/resources/views/portal/ninja2020/credits/index.blade.php
2020-06-15 17:34:26 +02:00

18 lines
431 B
PHP

@extends('portal.ninja2020.layout.app')
@section('meta_title', ctrans('texts.credits'))
@section('header')
@if($errors->any())
<div class="alert alert-failure mb-4">
@foreach($errors->all() as $error)
<p>{{ $error }}</p>
@endforeach
</div>
@endif
@endsection
@section('body')
<div class="flex flex-col">
@livewire('credits-table')
</div>
@endsection