fixed shortcode edit issues plus refactoring
This commit is contained in:
@@ -163,6 +163,13 @@
|
||||
{!! $errors->first('support_phones', '<p class="help-block">:message</p>') !!}
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="" for="contractType">Contract Type</label>
|
||||
<div class=" {{ $errors->has('contract_type') ? 'has-error' : ''}}">
|
||||
{!! Form::select('contract_type', $contract_types, old('contract_type'), ['class' => 'form-control ', 'placeholder'=>'Select Contract type' , 'id' => 'contractType']) !!}
|
||||
{!! $errors->first('contract_type', '<p class="help-block">:message</p>') !!}
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="" for="contractValidity">Contract Validity</label>
|
||||
<div class=" {{ $errors->has('contract_validity') ? 'has-error' : ''}}">
|
||||
|
||||
@@ -75,7 +75,7 @@
|
||||
</div>
|
||||
<div class="col-md-4">
|
||||
<h4 class="green">Company Details</h4>
|
||||
<table class="table">
|
||||
<table class="table table-bordered table-word-wrap">
|
||||
<tr>
|
||||
<th>Name</th>
|
||||
<td>{{ $mnoshow->country }}</td>
|
||||
@@ -90,7 +90,7 @@
|
||||
</tr>
|
||||
<tr>
|
||||
<th>Support Emails</th>
|
||||
<td>
|
||||
<td >
|
||||
<?php
|
||||
echo ($mnoshow->support_emails) ? implode(',', json_decode($mnoshow->support_emails)) : "";
|
||||
?>
|
||||
@@ -121,7 +121,7 @@
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>Finace Contact Person</th>
|
||||
<th>Finance Contact Person</th>
|
||||
<td>
|
||||
<?php
|
||||
echo ($mnoshow->contact_person_finance) ?? "N/A";
|
||||
@@ -134,7 +134,7 @@
|
||||
</div>
|
||||
<div class="col-md-4">
|
||||
<h4 class="green">Operations </h4>
|
||||
<table class="table">
|
||||
<table class="table table-word-wrap">
|
||||
<tr>
|
||||
<th>Services</th>
|
||||
<td class="">
|
||||
|
||||
Reference in New Issue
Block a user