!
{{ __("Create Card Customer") }}
@csrf
@include('admin.components.form.input', [ 'label' => __("first Name")." "."* (" . __("Should match with your ID") . ")", 'placeholder' => __("enter First Name"), 'name' => "first_name", 'value' => old('first_name') ])
@include('admin.components.form.input', [ 'label' => __("last Name")." "."* (" . __("Should match with your ID") . ")", 'placeholder' => __("enter Last Name"), 'name' => "last_name", 'value' => old('last_name') ])
+{{ $user->mobile_code??"" }}
@include('admin.components.form.input', [ 'label' => __("date Of Birth")." "."* (" . __("Should match with your ID") . ")", 'type' => "date", 'name' => "date_of_birth", 'value' => old('date_of_birth') ])
@include('admin.components.form.input', [ 'label' => __("house Number")." "."*", 'placeholder' => __("enter House Number"), 'name' => "house_number", 'value' => old('house_number') ])
@include('admin.components.form.input', [ 'label' => __("address")." "."*", 'placeholder' => __("enter Address"), 'name' => "address", 'value' => old('address') ])
@include('admin.components.form.input', [ 'label' => __("zip Code")." "."*", 'placeholder' => __("enter Zip Code"), 'name' => "zip_code", 'value' => old('zip_code', $user->address->zip ?? "") ])
@include('admin.components.form.input-file', [ 'label' => __("ID Card Image (Font Side)")." "."* (" . __("NID/Passport") . ")", 'name' => "id_image_font", 'class' => "form--control", 'label_class' => "mw-100" ])
@include('admin.components.form.input-file', [ 'label' => __("Your Photo")." "."* (" . __("Should show your face and must be match with your ID") . ")", 'name' => "user_image", 'class' => "form--control", 'label_class' => "mw-100" ])