@php
// Fill Input with Data When user create a commande
$firstname='';
$lastname='';
$sex='';
$customer_phone='';
$email='';
if(\Illuminate\Support\Facades\Session::has('user_command')){
$comd=\Illuminate\Support\Facades\Session::get('user_command');
$firstname=$comd['first_name'];
$lastname=$comd['last_name'];
$sex=$comd['sex'];
$customer_phone=$comd['customer_phone'];
$email=$comd['email'];
}
@endphp