@include('admin.partials.errors')
{{ Form::model($configuration, ['route' => ['configuration.update', $configuration->id]]) }}
{{ FormField::textarea(['name' => 'address', 'label' => 'Adresse']) }}
{{ FormField::text(['name' => 'zip_code', 'label' => 'Code postal']) }}
{{ FormField::text(['name' => 'city', 'label' => 'Ville']) }}
{{ FormField::select(['name' => 'country_code', 'options' => [null => ''] + \Countries::getList('fr', 'php'), 'label' => 'Pays', 'errors' => $errors]) }}
{{ FormField::text(['name' => 'phone', 'label' => 'Numéro de téléphone']) }}
{{ FormField::text(['name' => 'fax', 'label' => 'Fax']) }}
{{ FormField::email(['name' => 'email', 'label' => 'Email', 'errors' => $errors]) }}
{{ FormField::text(['name' => 'instagram', 'label' => 'Instagram', 'errors' => $errors]) }}
{{ FormField::text(['name' => 'linkedin', 'label' => 'Linkedin', 'errors' => $errors]) }}
{{ FormField::text(['name' => 'youtube', 'label' => 'Youtube', 'errors' => $errors]) }}
{{ FormField::text(['name' => 'facebook', 'label' => 'Facebook', 'errors' => $errors]) }}
{{ FormField::textarea(['name' => 'robots', 'label' => 'Edition du fichier robots.txt']) }}
{{ FormField::buttons(['label' => 'Mettre à jour', 'onlySubmit' => true]) }}
{{ Form::close() }}