{!! html()->label('Adresse','adresse' ) !!} {!! html()->textarea('adresse', null) ->attributes([($mode=="show"?'disabled':''),'placeholder' => 'Adresse', 'class' => 'form-control', 'rows'=>'2']) !!}
{!! html()->label('Code Postal','cp') !!} {!! html()->text('cp', null) ->attributes([($mode=="show"?'disabled':''), 'placeholder' => 'Code Postal','class' => 'form-control']) !!}
{!! html()->label( 'District - Zone','district') !!}
{!! html()->select('district',App\Models\MyApp::DISTRICTS2,null) ->placeholder('A définir') ->attributes([($mode=="show"?'disabled':''),'class' => 'form-control']) !!}
{!! html()->label( 'Ile','ile') !!}
{!! html()->select('ile',App\Models\MyApp::ILES2,null) ->placeholder('A définir') ->attributes([($mode=="show"?'disabled':''),'class' => 'form-control']) !!}
Contact 1 / Responsable
{!! html()->label( 'Nom','responsable') !!} {!! html()->text('responsable', null) ->attributes([($mode=="show"?'disabled':''), 'placeholder' => 'Nom Responsable','class' => 'form-control'] )!!}
{!! html()->label( 'Email','email') !!} {!! html()->text('email', null) ->attributes([($mode=="show"?'disabled':''), 'placeholder' => 'Email','class' => 'form-control'] )!!}
{!! html()->label( 'Téléphone','tel') !!} {!! html()->text('tel', null) ->attributes([($mode=="show"?'disabled':''), 'placeholder' => 'Téléphone','class' => 'form-control']) !!}
{!! html()->label( 'Fax','fax') !!} {!! html()->text('fax', null) ->attributes([($mode=="show"?'disabled':''), 'placeholder' => 'Fax','class' => 'form-control']) !!}
Contact 2
{!! html()->label( 'Nom','contact_nom') !!} {!! html()->text('contact_nom', null) ->attributes([($mode=="show"?'disabled':''), 'placeholder' => 'Nom Contact','class' => 'form-control'] )!!}
{!! html()->label( 'Email','contact_email') !!} {!! html()->email('contact_email', null) ->attributes([($mode=="show"?'disabled':''), 'placeholder' => 'Email','class' => 'form-control'] )!!}
{!! html()->label( 'Téléphone','contact_tel') !!} {!! html()->text('contact_tel', null) ->attributes([($mode=="show"?'disabled':''), 'placeholder' => 'Téléphone','class' => 'form-control']) !!}