-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8b0b289
commit 7030312
Showing
1 changed file
with
11 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,16 @@ | ||
{{-- Text Area HTML --}} | ||
@if($p_mode=='V') | ||
<div class="column column-text"> | ||
<div class="column"> | ||
<div class="form-group"> | ||
<label for="" class="form-label">{{$attribute['caption']}} {!! _attributeInfo($attribute['id'], $attribute['name'], $attribute['type']) !!}</label> | ||
<textarea class="form-control" disabled>{{$attribute['atrib_values'][0]['text_val']}}</textarea> | ||
<label for="{{$attribute_name}}" class="form-label">{{$attribute['caption']}} {!! _attributeInfo($attribute['id'], $attribute['name'], $attribute['type']) !!}</label> | ||
<textarea name="{{$attribute_name}}" class="form-control" disabled>{{$attribute['atrib_values'][0]['text_val']}}</textarea> | ||
</div> | ||
</div> | ||
@endif | ||
@elseif($p_mode=='U' || $p_mode=='I') | ||
<div class="column"> | ||
<div class="form-group"> | ||
<label for="{{$attribute_name}}" class="form-label">{{$attribute['caption']}}</label> | ||
<textarea name="{{$attribute_name}}" class="form-control">{{$attribute['atrib_values'][0]['text_val']}}</textarea> | ||
</div> | ||
</div> | ||
@endif |