1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-11 05:32:39 +01:00
invoiceninja/resources/views/portal/ninja2020/downloads/index.blade.php

16 lines
388 B
PHP
Raw Normal View History

2020-08-14 17:29:26 +02:00
@extends('portal.ninja2020.layout.app')
@section('meta_title', ctrans('texts.downloads'))
@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')
@livewire('downloads-table')
@endsection