|
@@ -6,17 +6,21 @@
|
|
|
|
|
|
@include('admin::form.error')
|
|
|
|
|
|
- <div class="row" style="width: 433px">
|
|
|
- <div class="col-lg-6">
|
|
|
+ <div class="row" style="max-width: 603px">
|
|
|
+ <div class="col-md-6" style="margin-right: 0">
|
|
|
<div class="input-group">
|
|
|
- <span class="input-group-addon"><i class="feather icon-calendar"></i></span>
|
|
|
+ <span class="input-group-prepend">
|
|
|
+ <span class="input-group-text bg-white"><i class="feather icon-calendar"></i></span>
|
|
|
+ </span>
|
|
|
<input autocomplete="off" type="text" name="{{$name['start']}}" value="{{ old($column['start'], $value['start']) }}" class="form-control {{$class['start']}}" style="width:180px" {!! $attributes !!} />
|
|
|
</div>
|
|
|
</div>
|
|
|
|
|
|
- <div class="col-lg-6">
|
|
|
+ <div class="col-md-6">
|
|
|
<div class="input-group">
|
|
|
- <span class="input-group-addon"><i class="feather icon-calendar"></i></span>
|
|
|
+ <span class="input-group-prepend">
|
|
|
+ <span class="input-group-text bg-white"><i class="feather icon-calendar"></i></span>
|
|
|
+ </span>
|
|
|
<input autocomplete="off" type="text" name="{{$name['end']}}" value="{{ old($column['end'], $value['end']) }}" class="form-control {{$class['end']}}" style="width: 180px" {!! $attributes !!} />
|
|
|
</div>
|
|
|
</div>
|