Skip to content

Commit

Permalink
Update numberRange.blade.php (#2750)
Browse files Browse the repository at this point in the history
  • Loading branch information
XhonorSkillline authored Nov 24, 2023
1 parent 8c0b15b commit d780d7f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions resources/views/fields/numberRange.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<div class="row">
<div class="col-md-6 pe-1">
<div class="form-group">
<input type="text"
<input type="{{ $attributes['type'] }}"
name="{{ $attributes['name'] }}[min]"
id='min_{{ \Illuminate\Support\Str::slug($attributes['name']) }}'
value="{{ $value['min'] ?? null }}"
Expand All @@ -14,7 +14,7 @@

<div class="col-md-6 ps-1">
<div class="form-group">
<input type="text"
<input type="{{ $attributes['type'] }}"
name="{{ $attributes['name'] }}[max]"
id='max_{{ \Illuminate\Support\Str::slug($attributes['name']) }}'
value="{{ $value['max'] ?? null }}"
Expand Down

0 comments on commit d780d7f

Please sign in to comment.