removed addresses lang file

This commit is contained in:
Cihan Şentürk
2021-09-03 12:57:54 +03:00
parent 6154ff31fd
commit c809bf7418
16 changed files with 39 additions and 43 deletions

View File

@ -31,13 +31,13 @@
{{ Form::textareaGroup('address', trans('general.address')) }}
{{ Form::textGroup('city', trans_choice('addresses.cities', 1), 'city', [], setting('company.city')) }}
{{ Form::textGroup('city', trans_choice('general.cities', 1), 'city', [], setting('company.city')) }}
{{ Form::textGroup('zip_code', trans('addresses.zip_code'), 'mail-bulk', [], setting('company.zip_code')) }}
{{ Form::textGroup('zip_code', trans('general.zip_code'), 'mail-bulk', [], setting('company.zip_code')) }}
{{ Form::textGroup('state', trans('addresses.state'), 'city', [], setting('company.state')) }}
{{ Form::textGroup('state', trans('general.state'), 'city', [], setting('company.state')) }}
{{ Form::selectGroup('country', trans_choice('addresses.countries', 1), 'globe-americas', trans('countries'), setting('company.country'), []) }}
{{ Form::selectGroup('country', trans_choice('general.countries', 1), 'globe-americas', trans('countries'), setting('company.country'), []) }}
{{ Form::fileGroup('logo', trans('companies.logo'), '', ['dropzone-class' => 'form-file']) }}

View File

@ -32,13 +32,13 @@
{{ Form::textareaGroup('address', trans('general.address')) }}
{{ Form::textGroup('city', trans_choice('addresses.cities', 1), 'city', []) }}
{{ Form::textGroup('city', trans_choice('general.cities', 1), 'city', []) }}
{{ Form::textGroup('zip_code', trans('addresses.zip_code'), 'mail-bulk', []) }}
{{ Form::textGroup('zip_code', trans('general.zip_code'), 'mail-bulk', []) }}
{{ Form::textGroup('state', trans('addresses.state'), 'city', []) }}
{{ Form::textGroup('state', trans('general.state'), 'city', []) }}
{{ Form::selectGroup('country', trans_choice('addresses.countries', 1), 'globe-americas', trans('countries'), $company->country, []) }}
{{ Form::selectGroup('country', trans_choice('general.countries', 1), 'globe-americas', trans('countries'), $company->country, []) }}
{{ Form::fileGroup('logo', trans('companies.logo'), '', ['dropzone-class' => 'form-file'], $company->company_logo) }}