Initial Commit
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
<div class="mb-3 row">
|
||||
<label for="name_input" class="col-2 col-form-label fw-bold">@lang('name') : </label>
|
||||
<div class="col-10">
|
||||
<input
|
||||
type="text"
|
||||
class="form-control"
|
||||
name="name"
|
||||
id="name_input"
|
||||
placeholder="@lang('name')"
|
||||
@if(old('name') !== null)
|
||||
value="{{old('name')}}"
|
||||
@else
|
||||
@if(isset($data->name))
|
||||
value="{{$data->name}}"
|
||||
@endif
|
||||
@endif
|
||||
>
|
||||
</div>
|
||||
</div>
|
||||
Reference in New Issue
Block a user