@extends($activeTheme.'layouts.app') @section('title', ___('Settings')) @section('active_menu', 'settings') @section('content')

{{ ___('Account Setting') }}

@csrf
{{ ___('Avatar') }}
{{ ___('Use 150x150px for better use') }}
@error('avatar'){{ $message }}@enderror
{{ ___('Username') }} *
@error('username'){{ $message }}@enderror
{{ ___('Email address') }} *
@error('email'){{ $message }}@enderror
{{ ___('New Password') }}
{{ ___('Confirm New Password') }}
@error('new_password'){{ $message }}@enderror

{{ ___('Billing Details') }}

{{ ___('These details will be used in invoice and payments.') }}
@if ($errors->billing->any()) {{ ___('All the fields with * are required') }} @endif
@csrf
{{ ___('Type') }}
@php $billing_details_type = $user_options->billing_details_type ?? 'personal' @endphp
@if($settings->invoice_admin_tax_type) {{ $settings->invoice_admin_tax_type }} @else {{ ___("Tax ID") }} @endif
{{ ___('Name') }} *
{{ ___('Address') }} *
{{ ___('Country') }} *
{{ ___('City') }} *
{{ ___('State') }} *
{{ ___('Postal code') }} *
@push('scripts_at_bottom') @endpush @endsection