@extends('user.layout') @php $setLang = \App\Models\User\Language::where([ ['code', request()->input('language')], ['user_id',Auth::id()] ])->first(); $userDefaultLang = \App\Models\User\Language::where([ ['user_id',Auth::id()], ['is_default',1] ])->first(); $userLanguages = \App\Models\User\Language::where('user_id',Auth::id())->get(); @endphp @if(!empty($setLang) && $setLang->rtl == 1) @section('styles') @endsection @endif @section('content')
{{__('Input Fields')}}
@if(!is_null($userDefaultLang)) @if (!empty($userLanguages)) @endif @endif

** {{__('Do not create')}} {{__('Name & Email')}} {{__('input field, it will be in the Request a Quote form By default.')}}

@if (count($inputs) > 0)
@foreach ($inputs as $key => $input) {{-- input type text --}} @if ($input->type == 1)
{{csrf_field()}}
@elseif ($input->type == 2)
{{csrf_field()}}
@elseif ($input->type == 3)
{{csrf_field()}}
@foreach ($input->quote_input_options as $key => $option)
@endforeach
@elseif ($input->type == 4)
{{csrf_field()}}
@elseif ($input->type == 6)
{{csrf_field()}}
@elseif ($input->type == 7)
{{csrf_field()}}
@elseif ($input->type == 5)
{{csrf_field()}}
@endif @endforeach
@endif
{{__('Create Input')}}
{{csrf_field()}}

@endsection @section('scripts') @endsection