@extends('layouts.dash') @section('title') Utilisateur @stop @section('title_card') @stop @section('content') @if ($errors) @foreach ($errors->all() as $error)
{!! $error !!}
@endforeach @endif
Changer d'Utilisateur
{{ html()->form('PUT', url('change_profil'))->open() }}
{!! html()->label( 'Utilisateur','utilisateur') !!} {!! html()->select('user_id',$users_list,DB::table('users')->where('id', '=', $user->id)->pluck("id")) ->placeholder('Choisissez un utilisateur') ->attributes(['class' => 'form-control']) !!}
{!! html()->button('Valider')->value('Enregistrer')->type('submit')->attributes(['class' => 'btn btn-primary']) !!}
{{ html()->closeModelForm() }}
@stop