1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 17:01:33 +02:00
invoiceninja/resources/views/portal/ninja2020/profile/index.blade.php

36 lines
1.3 KiB
PHP
Raw Normal View History

2020-03-23 18:10:42 +01:00
@extends('portal.ninja2020.layout.app')
@section('meta_title', ctrans('texts.client_information'))
@section('header')
2020-03-26 22:43:57 +01:00
<p class="leading-5 text-gray-500">{{ ctrans('texts.update_your_personal_info') }}</p>
2020-03-23 18:10:42 +01:00
@endsection
@section('body')
@if(session()->has('missing_required_fields'))
<div class="validation validation-fail">
<p class="mb-3 font-semibold">{{ ctrans('texts.before_proceeding_with_payment_warning') }}:</p>
<ul>
@foreach(session()->get('missing_required_fields') as $field)
<li class="block"> {{ ctrans("texts.{$field}") }}</li>
@endforeach
</ul>
<button onclick="window.history.back();" class="block mt-3 button button-link pl-0 ml-0 underline">{{ ctrans('texts.after_completing_go_back_to_previous_page') }}</button>
</div>
@endif
<!-- Clients' name, website & logo -->
2020-09-24 13:44:56 +02:00
@livewire('profile.settings.name-website-logo')
2020-03-23 18:10:42 +01:00
<!-- Basic information: Contact's first & last name, e-mail address etc. -->
@livewire('profile.settings.general')
2020-03-23 18:10:42 +01:00
<!-- Client personal address -->
2020-09-24 14:23:05 +02:00
@livewire('profile.settings.personal-address', ['countries' => $countries])
2020-03-23 18:10:42 +01:00
<!-- Client shipping address -->
2020-09-24 14:40:27 +02:00
@livewire('profile.settings.shipping-address', ['countries' => $countries])
2020-03-23 18:10:42 +01:00
@endsection