diff --git a/resources/views/modals/user.blade.php b/resources/views/modals/user.blade.php index af2863282..fe73ae0d8 100644 --- a/resources/views/modals/user.blade.php +++ b/resources/views/modals/user.blade.php @@ -29,7 +29,6 @@
- @if ($user->company) @@ -43,10 +42,10 @@ @include ('partials.forms.edit.location-profile-select', ['translated_name' => trans('general.location'), 'fieldname' => 'location_id'])
- @include('partials.forms.edit.name-first', ['class' => 'col-md-8 col-xs-12', 'style' => 'width:65.5%;']) + @include('partials.forms.edit.name-first', ['class' => 'col-md-8 col-xs-12-pull', 'style' => 'width:67%;'])
- @include('partials.forms.edit.name-last', ['class' => 'col-md-8 col-xs-12', 'style' => 'width:65.5%;']) + @include('partials.forms.edit.name-last', ['class' => 'col-md-8 col-xs-12-pull', 'style' => 'width:67%;'])
@include('partials.forms.edit.email') @@ -56,18 +55,27 @@
-
-
- Generate +
+
+ +
+
+ Generate +
-
-
+
+
+ +
+
+
+
diff --git a/resources/views/partials/forms/edit/email.blade.php b/resources/views/partials/forms/edit/email.blade.php index 652b7155c..dc8a4d8d2 100644 --- a/resources/views/partials/forms/edit/email.blade.php +++ b/resources/views/partials/forms/edit/email.blade.php @@ -1,7 +1,7 @@
- + {!! $errors->first('email', '') !!}
\ No newline at end of file diff --git a/resources/views/partials/forms/edit/name-first.blade.php b/resources/views/partials/forms/edit/name-first.blade.php index 6911709c5..d7c07947a 100644 --- a/resources/views/partials/forms/edit/name-first.blade.php +++ b/resources/views/partials/forms/edit/name-first.blade.php @@ -1,7 +1,11 @@ +@php + $class = $class ?? 'col-md-6'; + $style = $style ?? ''; +@endphp
-
+
{!! $errors->first('first_name', '') !!}
diff --git a/resources/views/partials/forms/edit/name-last.blade.php b/resources/views/partials/forms/edit/name-last.blade.php index f5e3d834f..61ef221dc 100644 --- a/resources/views/partials/forms/edit/name-last.blade.php +++ b/resources/views/partials/forms/edit/name-last.blade.php @@ -1,7 +1,11 @@ +@php + $class = $class ?? 'col-md-6'; + $style = $style ?? ''; +@endphp
-
+
{!! $errors->first('last_name', '') !!}