@if($errors->any())
@endif
{{ html()->label(__('validation.attributes.frontend.first_name'))->for('first_name') }}
{{ html()->text('first_name', @$info['first_name'])
->class('mb-0')
->placeholder(__('validation.attributes.frontend.first_name'))
->attribute('maxlength', 191)
->required()}}
{{ html()->label(__('validation.attributes.frontend.last_name'))->for('last_name') }}
{{ html()->text('last_name', @$info['last_name'])
->class('mb-0')
->placeholder(__('validation.attributes.frontend.last_name'))
->attribute('maxlength', 191)
->required() }}
{{ html()->label(__('validation.attributes.frontend.phone'))->for('phone') }}
{{ html()->text('phone', @$info['email'])
->class('mb-0')
->placeholder(__('validation.attributes.frontend.phone'))
->attribute('maxlength', 20) }}
{{ html()->label(__('Company'))->for('company') }}
{{ html()->text('company', @$info['email'])
->class('mb-0')
->placeholder(__('Company'))
->attribute('maxlength', 20) }}
{{ html()->label(__('validation.attributes.frontend.email'))->for('email') }}
{{ html()->email('email', @$info['email'])
->class('mb-0')
->placeholder(__('validation.attributes.frontend.email'))
->attribute('maxlength', 191)
->required() }}
{{ html()->label(__('validation.attributes.frontend.password'))->for('password') }}
{{ html()->password('password')
->class('mb-0')
->placeholder(__('validation.attributes.frontend.password'))
->required() }}
{{ html()->label(__('validation.attributes.frontend.password_confirmation'))->for('password_confirmation') }}
{{ html()->password('password_confirmation')
->class('mb-0')
->placeholder(__('validation.attributes.frontend.password_confirmation'))
->required() }}
{{-- social links start --}}
{{--
--}}
{{-- social links end --}}