@extends('EcomAuthViews::layouts.authentication.layout',[ "withoutWrapper" => true, 'heightAdjuster' => 0 ]) @section('content') @php // $input_errors = session('res_bag'); @endphp

Contact Details

@csrf @if($type == "phone") {{-- @component('EcomAuthViews::components.phone' , ['phone_value' => isset($phone_value) ? $phone_value : '' ] )--}} @component('EcomGeneralViews::components.form.input', [ "parentClass" => "", "size" => "third", "type" => "text", "label" => ___('authentication.email') ]) @error('email') {{$message}} @enderror @endcomponent @component('EcomGeneralViews::components.form.input', [ "parentClass" => "", "size" => "third", "type" => "text" ]) @component('EcomAuthViews::components.phone' , ['phone_value' => isset($phone_value) ? $phone_value : '','country_code' => isset($country_code) ? $country_code : null ]) @endcomponent @endcomponent @elseif($type == "email") @component('EcomGeneralViews::components.form.input', [ "parentClass" => "", "size" => "half", "type" => "text", "label" => ___('authentication.email') ]) @error('email') {{$message}} @enderror @endcomponent @endif @component('EcomGeneralViews::components.form.input', [ "parentClass" => "", "size" => "third", "type" => "text" ]) @component('EcomGeneralViews::components.form.input', [ "parentClass" => "hide-label-sm", "size" => "full", "type" => "submit", "label" => "" ])
 
@endcomponent @endcomponent
@endsection @section('scripts') @endsection