customer edit
This commit is contained in:
parent
8fbf2b7b79
commit
a120adf10e
|
|
@ -7,7 +7,7 @@
|
|||
@section('content')
|
||||
<div class="content">
|
||||
<?php $locale = request()->get('locale') ?: app()->getLocale(); ?>
|
||||
|
||||
|
||||
<form method="POST" action="" @submit.prevent="onSubmit">
|
||||
|
||||
<div class="page-header">
|
||||
|
|
@ -121,7 +121,7 @@
|
|||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</form>
|
||||
</div>
|
||||
@stop
|
||||
|
|
@ -63,8 +63,13 @@
|
|||
|
||||
<div class="control-group">
|
||||
<label for="name" >{{ __('admin::app.customers.customers.customer_group') }}</label>
|
||||
<?php $selectedOption = $customer->customerGroup->id ?>
|
||||
|
||||
@if(!is_null($customer->customer_group_id))
|
||||
<?php $selectedOption = $customer->customerGroup->id ?>
|
||||
@endif
|
||||
|
||||
<select class="control" name="customer_group_id">
|
||||
|
||||
@foreach($customerGroup as $group)
|
||||
<option value="{{ $group->id }}" {{ $selectedOption == $group->id ? 'selected' : '' }}>
|
||||
{{ $group->group_name}}
|
||||
|
|
|
|||
|
|
@ -0,0 +1,13 @@
|
|||
@extends('admin::layouts.content')
|
||||
|
||||
@section('page_title')
|
||||
{{ __('admin::app.catalog.categories.edit-title') }}
|
||||
@stop
|
||||
|
||||
@section('content')
|
||||
<div class="content">
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
@stop
|
||||
|
|
@ -1070,6 +1070,7 @@ section.slider-block {
|
|||
.addtocart {
|
||||
white-space: nowrap;
|
||||
font-size: 12px;
|
||||
border-radius: 0px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -1173,6 +1174,7 @@ section.slider-block {
|
|||
.addtocart {
|
||||
white-space: nowrap;
|
||||
font-size: 12px;
|
||||
border-radius: 0px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -1649,11 +1651,13 @@ section.product-detail {
|
|||
.addtocart {
|
||||
width: 293px;
|
||||
background: black;
|
||||
border-radius: 0px;
|
||||
}
|
||||
|
||||
.buynow {
|
||||
width: 293px;
|
||||
float:right;
|
||||
border-radius: 0px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -1991,10 +1995,12 @@ section.product-detail {
|
|||
.addtocart {
|
||||
width: 49%;
|
||||
background: #000000;
|
||||
border-radius: 0px;
|
||||
}
|
||||
|
||||
.buynow {
|
||||
width: 49%;
|
||||
border-radius: 0px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1132,6 +1132,7 @@ section.slider-block div.slider-content div.slider-control .light-right-icon {
|
|||
.main-container-wrapper .product-card .cart-fav-seg .addtocart {
|
||||
white-space: nowrap;
|
||||
font-size: 12px;
|
||||
border-radius: 0px;
|
||||
}
|
||||
.main-container-wrapper .top-toolbar {
|
||||
border-bottom: 1px solid #E8E8E8;
|
||||
|
|
@ -1197,6 +1198,7 @@ section.slider-block div.slider-content div.slider-control .light-right-icon {
|
|||
.main-container-wrapper .product-card .cart-fav-seg .addtocart {
|
||||
white-space: nowrap;
|
||||
font-size: 12px;
|
||||
border-radius: 0px;
|
||||
}
|
||||
.main-container-wrapper .top-toolbar {
|
||||
border-bottom: 1px solid #E8E8E8;
|
||||
|
|
@ -1692,11 +1694,13 @@ section.product-detail div.layouter form div.product-image-group .cart-fav-seg {
|
|||
section.product-detail div.layouter form div.product-image-group .cart-fav-seg .addtocart {
|
||||
width: 293px;
|
||||
background: black;
|
||||
border-radius: 0px;
|
||||
}
|
||||
|
||||
section.product-detail div.layouter form div.product-image-group .cart-fav-seg .buynow {
|
||||
width: 293px;
|
||||
float: right;
|
||||
border-radius: 0px;
|
||||
}
|
||||
|
||||
section.product-detail div.layouter form .details {
|
||||
|
|
@ -1905,9 +1909,11 @@ section.product-detail div.layouter form .details .full-description {
|
|||
section.product-detail div.layouter form .details .attributes .cart-fav-seg .addtocart {
|
||||
width: 49%;
|
||||
background: #000000;
|
||||
border-radius: 0px;
|
||||
}
|
||||
section.product-detail div.layouter form .details .attributes .cart-fav-seg .buynow {
|
||||
width: 49%;
|
||||
border-radius: 0px;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue