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')
|
2020-11-25 14:38:49 +01:00
|
|
|
@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>
|
2021-05-14 10:18:26 +02:00
|
|
|
@endforeach
|
2020-11-25 14:38:49 +01:00
|
|
|
</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
|
|
|
|
|
2021-05-14 10:18:26 +02:00
|
|
|
<!-- 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
|
|
|
|
2021-05-14 10:18:26 +02: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
|