Skip to content

Commit

Permalink
Fixed the icons (zone -> globe) on the country form
Browse files Browse the repository at this point in the history
  • Loading branch information
fulopattila122 committed Nov 29, 2024
1 parent 39bdd82 commit 98bfe46
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@

- Added Customer purchases chart to the Customer show page
- Changed the minimal Customer library dependency to v3.1
- Fixed the icons (zone -> globe) on the country form

## 4.4.0
##### 2024-11-23
Expand Down
2 changes: 1 addition & 1 deletion src/resources/views/country/_form.blade.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<div class="mb-3">
<div @class(['input-group input-group-lg', 'has-validation' => $errors->has('name')])>
<span class="input-group-text">{!! icon('zone') !!}</span>
<span class="input-group-text">{!! icon('globe') !!}</span>
<x-appshell::floating-label :label="__('Name')" :is-invalid="$errors->has('name')">
{{ Form::text('name', null, [
'class' => 'form-control' . ($errors->has('name') ? ' is-invalid' : ''),
Expand Down

0 comments on commit 98bfe46

Please sign in to comment.