16 lines
435 B
PHP
16 lines
435 B
PHP
|
<div class="mb-3 row">
|
||
|
<label for="email_input" class="col-2 col-form-label fw-bold">@lang('email') : </label>
|
||
|
<div class="col-10">
|
||
|
<input
|
||
|
type="email"
|
||
|
class="form-control"
|
||
|
name="email"
|
||
|
id="email_input"
|
||
|
placeholder="@lang('email')"
|
||
|
@if(old('email') !== null)
|
||
|
value="{{old('email')}}"
|
||
|
@endif
|
||
|
>
|
||
|
</div>
|
||
|
</div>
|