Fixes on attributes on prices
This commit is contained in:
@@ -1 +1 @@
|
||||
@include('components.input', ['type' => 'number', 'meta' => "step = '.01'"])
|
||||
@include('components.input', ['type' => 'number', 'meta' => "step=0.01"])
|
||||
@@ -3,7 +3,7 @@
|
||||
<div class="row">
|
||||
<div class="col-md-2">
|
||||
{{ Form::label('civilite', 'Civilité') }}
|
||||
<select name="civilite" id="civilite" class="form-control">
|
||||
<select name="civility" id="civility" class="form-control">
|
||||
<option value=""></option>
|
||||
<option value="1">M.</option>
|
||||
<option value="2">Mme</option>
|
||||
@@ -12,12 +12,12 @@
|
||||
|
||||
<div class="col-md-5">
|
||||
{{ Form::label('prenom', 'Prénom') }}
|
||||
<input type="text" name="prenom" id="prenom" value="@if (isset($prenom)){{ $prenom }}@endif" class="form-control">
|
||||
<input type="text" name="firstname" value="@if (isset($firstname)){{ $firstname }}@endif" class="form-control">
|
||||
</div>
|
||||
|
||||
<div class="col-md-5">
|
||||
{{ Form::label('nom', 'Nom') }}
|
||||
<input type="text" name="nom" id="nom" value="@if (isset($nom)){{ $nom }}@endif" class="form-control">
|
||||
<input type="text" name="name" value="@if (isset($name)){{ $name }}@endif" class="form-control">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
@@ -5,6 +5,7 @@
|
||||
@if (isset($style))style="{{ $style }}" @endif
|
||||
@if (isset($required))required="required"@endif
|
||||
@if (isset($multiple))multiple="multiple"@endif
|
||||
@if (isset($meta)){{ $meta }}@endif
|
||||
>
|
||||
@if (isset($with_empty))
|
||||
<option>{{ $with_empty }}</option>
|
||||
|
||||
Reference in New Issue
Block a user