{{__('Profile')}}
{{__('General Information')}}
{{ html()->label(__('Job Title'), 'title') }}
{{__('Contact Information')}}
{{__('Address')}}
@if (config('users.properties') && !\Request::is('profile/edit'))
{{__('Additional Information')}}
@foreach (config('users.properties') as $variable => $label)
{{ html()->label(__($label), "meta.{$variable}") }}
{{ html()->text("meta.{$variable}")->id("meta.{$variable}")->class('form-control')->attribute('v-model', "formData.meta.{$variable}")->attribute('v-bind:class', '{\'form-control\':true}') }}
@endforeach
@endif