42 lines
1.2 KiB
PHP
42 lines
1.2 KiB
PHP
<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>
|