@extends('admin.global-config.index') @section('global-config-content')
@csrf
{{ __('Company Name') }}
@if ($errors->has('COMPANY_NAME'))
{{ $errors->first('COMPANY_NAME') }}
@endif
{{ __('Address') }}
@if ($errors->has('COMPANY_ADDRESS'))
{{ $errors->first('COMPANY_ADDRESS') }}
@endif
{{ __('City') }}
@if ($errors->has('COMPANY_CITY'))
{{ $errors->first('COMPANY_CITY') }}
@endif
{{ __('State') }}
@if ($errors->has('COMPANY_STATE'))
{{ $errors->first('COMPANY_STATE') }}
@endif
{{ __('Postal Code') }}
@if ($errors->has('COMPANY_POSTAL_CODE'))
{{ $errors->first('COMPANY_POSTAL_CODE') }}
@endif
{{ __('Country') }}
@foreach (config('countries') as $key => $value)
{{ __($value) }}
@endforeach
@if ($errors->has('COMPANY_COUNTRY'))
{{ $errors->first('COMPANY_COUNTRY') }}
@endif
{{ __('Phone') }}
@if ($errors->has('COMPANY_PHONE'))
{{ $errors->first('COMPANY_PHONE') }}
@endif
{{ __('Email') }}
@if ($errors->has('COMPANY_EMAIL'))
{{ $errors->first('COMPANY_EMAIL') }}
@endif
{{ __('Tax ID') }}
@if ($errors->has('COMPANY_TAX_ID'))
{{ $errors->first('COMPANY_TAX_ID') }}
@endif
{{ __('Save') }}
@endsection