mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-09 03:14:30 -04:00
parent
33f70de451
commit
56a9bc2bdd
@ -18,8 +18,8 @@
|
||||
|
||||
@foreach($companies as $company)
|
||||
<div class="form-check">
|
||||
<input class="form-check-input" type="checkbox" name="companies[{{ $company->id }}][id]" id="company1" value="{{ $company->id }}" checked>
|
||||
<label class="form-check-label" for="company1">
|
||||
<input class="form-check-input" id="company_{{ $company->id }}" type="checkbox" name="companies[{{ $company->id }}][id]" id="company1" value="{{ $company->id }}" checked>
|
||||
<label class="form-check-label" for="company_{{ $company->id }}">
|
||||
Name: {{ $company->settings->name }} ID: {{ $company->id }}
|
||||
</label>
|
||||
</div>
|
||||
|
@ -4,6 +4,8 @@
|
||||
@parent
|
||||
@include('accounts.nav', ['selected' => ACCOUNT_MANAGEMENT])
|
||||
|
||||
@include('migration.includes.errors')
|
||||
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-heading">
|
||||
<h3 class="panel-title">{!! trans('texts.welcome_to_the_new_version') !!}</h3>
|
||||
|
@ -5,3 +5,11 @@
|
||||
@endforeach
|
||||
</div>
|
||||
@endif
|
||||
|
||||
@if($errors->any())
|
||||
<div class="alert alert-danger">
|
||||
@foreach($errors->all() as $error)
|
||||
<p>{!! $error !!}</p>
|
||||
@endforeach
|
||||
</div>
|
||||
@endif
|
Loading…
x
Reference in New Issue
Block a user