Skip to content

Commit

Permalink
fix: fix quick contact creation (#5572)
Browse files Browse the repository at this point in the history
  • Loading branch information
jsawo authored Oct 8, 2021
1 parent 5fd6eb2 commit bab87db
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions resources/views/people/create.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
:input-type="'text'"
:required="true"
:title="'{{ trans('people.people_add_firstname') }}'"
:value="'{{ $firstName }}'">
value="{{ $firstName }}">
</form-input>
</div>

Expand All @@ -57,7 +57,7 @@
:input-type="'text'"
:required="false"
:title="'{{ trans('people.people_add_lastname') }}'"
:value="'{{ $lastName }}'">
value="{{ $lastName }}">
</form-input>
</div>

Expand All @@ -78,7 +78,7 @@
:input-type="'text'"
:required="false"
:title="'{{ trans('people.people_add_lastname') }}'"
:value="'{{ $lastName }}'">
value="{{ $lastName }}">
</form-input>
</div>

Expand All @@ -88,7 +88,7 @@
:input-type="'text'"
:required="true"
:title="'{{ trans('people.people_add_firstname') }}'"
:value="'{{ $firstName }}'">
value="{{ $firstName }}">
</form-input>
</div>

Expand Down

0 comments on commit bab87db

Please sign in to comment.