@extends('layouts.auth') @section('title') {{ trans_choice('general.create_profile',1) }} @endsection @section('content')

{{ trans_choice('general.create_profile',1) }}

50%
💪 Almost there 👏
{{csrf_field()}}
@if(\App\Models\Setting::where('setting_key','enable_custom_fields')->first()->setting_value==1) @foreach(\App\Models\CustomField::where('category','clients')->get() as $key)
@if($key->field_type=="number") required==1) required @endif> @endif @if($key->field_type=="textfield") required==1) required @endif> @endif @if($key->field_type=="date") required==1) required @endif> @endif @if($key->field_type=="textarea") @endif @if($key->field_type=="decimal") required==1) required @endif> @endif @if($key->field_type=="select") @endif @if($key->field_type=="radiobox") @foreach(explode(',',$key->radio_box_values) as $v)
@endforeach @endif @if($key->field_type=="checkbox") @foreach(explode(',',$key->checkbox_values) as $v)
@endforeach @endif
@endforeach @endif
@endsection @section('footer-scripts') @endsection