{{trans('admin/general.contact_info.title')}}
{{ html()->form()->method('POST')->class("form modulForm")->id("modulForm")->autocomplete("off")->attribute('enctype','multipart/form-data')->open() }}
@foreach($list as $lang)
@endforeach
{{html()->label()->for("lang_title")->html(trans("admin/general.contact_info.form.lang_title")) }}
:
{{html()->span()->id("lang_title")->text($lang["lang_title"])->style(['font-size'=>'12px'])}}
@php
$contactInfoID=$lang["contact_info"]["id"];
$langCode=$lang["lang_code"];
$contactInfoVal=$lang["contact_info"]["contact_info"];
$contactMapVal=$lang["contact_info"]["map"];
$footerContact=$lang["contact_info"]["footer_contact"];
$headerContact=$lang["contact_info"]["header_contact"];
@endphp
{{html()->label()->for("contact_info_".$contactInfoID."_".$langCode)->html(trans('admin/general.contact_info.form.map')) }}
{{html()
->textarea()
->name("contact_info[".$langCode."][map]")
->value($contactMapVal)
->id("contact_info_".$contactInfoID."_".$langCode)
->style(['max-width'=>'100%','max-height'=>'150px','min-height'=>'150px'])
->class("form-control editor")}}
{{html()->label()->for("contact_info_".$contactInfoID."_".$langCode)->html(trans('admin/general.contact_info.form.contact_info')) }}
{{html()
->textarea()
->name("contact_info[".$langCode."][contact_info]")
->value($contactInfoVal)
->id("contact_info_".$contactInfoID."_".$langCode)
->style(['max-width'=>'100%','max-height'=>'150px','min-height'=>'150px'])
->class("form-control editor")}}
{{html()->label()->for("contact_info_".$contactInfoID."_".$langCode)->html(trans('admin/general.contact_info.form.footer_contact')) }}
{{html()
->textarea()
->name("contact_info[".$langCode."][footer_contact]")
->value($footerContact)
->id("contact_info_".$contactInfoID."_".$langCode)
->style(['max-width'=>'100%','max-height'=>'150px','min-height'=>'150px'])
->class("form-control editor")}}
{{html()->label()->for("contact_info_".$contactInfoID."_".$langCode)->html(trans('admin/general.contact_info.form.header_contact')) }}
{{html()
->textarea()
->name("contact_info[".$langCode."][header_contact]")
->value($headerContact)
->id("contact_info_".$contactInfoID."_".$langCode)
->style(['max-width'=>'100%','max-height'=>'150px','min-height'=>'150px'])
->class("form-control editor")}}
{{ html()->button()->type("submit")->class("btn btn-info btn-sm")->id("btnAction")->html(trans("admin/general.contact_info.form.action")) }}
{{ html()->form()->close() }}