Initial Commit
This commit is contained in:
@@ -0,0 +1,41 @@
|
||||
<div class="mb-3 row">
|
||||
<label for="name_input" class="col-2 col-form-label fw-bold">@lang('street') : </label>
|
||||
<div class="col-6 pe-2">
|
||||
<input
|
||||
type="text"
|
||||
class="form-control"
|
||||
name="street_name"
|
||||
id="street_name_input"
|
||||
placeholder="@lang('name')"
|
||||
@if(old('street_name') !== null)
|
||||
value="{{old('street_name')}}"
|
||||
@endif
|
||||
required
|
||||
>
|
||||
</div>
|
||||
<div class="col-2 pe-2">
|
||||
<input
|
||||
type="text"
|
||||
class="form-control"
|
||||
name="street_number"
|
||||
id="street_number_input"
|
||||
placeholder="@lang('street') @lang('number')"
|
||||
@if(old('street_number') !== null)
|
||||
value="{{old('street_number')}}"
|
||||
@endif
|
||||
required
|
||||
>
|
||||
</div>
|
||||
<div class="col-2">
|
||||
<input
|
||||
type="text"
|
||||
class="form-control"
|
||||
name="street_direction"
|
||||
id="street_direction_input"
|
||||
placeholder="@lang('instructions')"
|
||||
@if(old('street_direction') !== null)
|
||||
value="{{old('street_direction')}}"
|
||||
@endif
|
||||
>
|
||||
</div>
|
||||
</div>
|
||||
Reference in New Issue
Block a user