Bootstrap4 :: Tickets Modules UI updated
This commit is contained in:
@@ -1,11 +1,19 @@
|
||||
@extends('themes.default1.admin.layout.admin')
|
||||
|
||||
@section('Tickets')
|
||||
active
|
||||
class="nav-link active"
|
||||
@stop
|
||||
|
||||
@section('ticket-menu-parent')
|
||||
class="nav-item menu-open"
|
||||
@stop
|
||||
|
||||
@section('ticket-menu-open')
|
||||
class="nav nav-treeview menu-open"
|
||||
@stop
|
||||
|
||||
@section('status')
|
||||
class="active"
|
||||
class="nav-link active"
|
||||
@stop
|
||||
|
||||
@section('PageHeader')
|
||||
@@ -17,40 +25,51 @@ class="active"
|
||||
</ol>
|
||||
@stop
|
||||
|
||||
<style type="text/css">
|
||||
.select2-container--default .select2-selection--single {
|
||||
border: 1px solid #ced4da !important;
|
||||
border-radius: 0.25rem !important;
|
||||
height: 35px !important;
|
||||
}
|
||||
.select2-selection__rendered{margin-top: 2px !important;}
|
||||
|
||||
.select2-selection__arrow { top: 5px !important; }
|
||||
</style>
|
||||
|
||||
@section('content')
|
||||
{!! Form::model($status,['route'=>['statuss.update', $status->id],'method'=>'PATCH','files' => true]) !!}
|
||||
<div class="box box-primary">
|
||||
<div class="box-header with-border">
|
||||
<h4 class="box-title">{!! Lang::get('lang.edit_details') !!}</h4>
|
||||
@if(Session::has('errors'))
|
||||
<div class="alert alert-danger alert-dismissable">
|
||||
<i class="fas fa-ban"></i>
|
||||
<b>{!! Lang::get('lang.alert') !!}!</b>
|
||||
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button>
|
||||
<br/>
|
||||
@foreach ($errors->all() as $error)
|
||||
<li class="error-message-padding">{{ $error }}</li>
|
||||
@endforeach
|
||||
</div>
|
||||
@endif
|
||||
@if(Session::has('success'))
|
||||
<div class="alert alert-success alert-dismissable">
|
||||
<i class="fas fa-check-circle"></i>
|
||||
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button>
|
||||
{{Session::get('success')}}
|
||||
</div>
|
||||
@endif
|
||||
@if(Session::has('failed'))
|
||||
<div class="alert alert-danger alert-dismissable">
|
||||
<i class="fas fa-ban"></i>
|
||||
<b>{!! Lang::get('lang.alert') !!} !</b>
|
||||
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button>
|
||||
<p>{{Session::get('failed')}}</p>
|
||||
</div>
|
||||
@endif
|
||||
|
||||
<div class="card card-light">
|
||||
<div class="card-header">
|
||||
<h3 class="card-title">{!! Lang::get('lang.edit_details') !!}</h3>
|
||||
</div><!-- /.box-header -->
|
||||
<div class="box-body">
|
||||
@if(Session::has('errors'))
|
||||
<div class="alert alert-danger alert-dismissable">
|
||||
<i class="fa fa-ban"></i>
|
||||
<b>{!! Lang::get('lang.alert') !!}!</b>
|
||||
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button>
|
||||
<br/>
|
||||
@foreach ($errors->all() as $error)
|
||||
<li class="error-message-padding">{{ $error }}</li>
|
||||
@endforeach
|
||||
</div>
|
||||
@endif
|
||||
@if(Session::has('success'))
|
||||
<div class="alert alert-success alert-dismissable">
|
||||
<i class="fa fa-check-circle"></i>
|
||||
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button>
|
||||
{{Session::get('success')}}
|
||||
</div>
|
||||
@endif
|
||||
@if(Session::has('failed'))
|
||||
<div class="alert alert-danger alert-dismissable">
|
||||
<i class="fa fa-ban"></i>
|
||||
<b>{!! Lang::get('lang.alert') !!} !</b>
|
||||
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button>
|
||||
<p>{{Session::get('failed')}}</p>
|
||||
</div>
|
||||
@endif
|
||||
<div class="card-body">
|
||||
<div class="row">
|
||||
<div class="col-md-4">
|
||||
<div class="form-group {{ $errors->has('name') ? 'has-error' : '' }}">
|
||||
@@ -63,73 +82,74 @@ class="active"
|
||||
<label>{!! Lang::get('lang.display_order') !!}: <span class="text-red"> *</span></label><br>
|
||||
<input type="number" name="sort" min="1" class="form-control" value="{!! $status->sort !!}">
|
||||
</div>
|
||||
</div><div class="col-md-2">
|
||||
</div>
|
||||
<div class="col-md-2" id="ticket-status-icon-container">
|
||||
<div class="form-group {{ $errors->has('icon_class') ? 'has-error' : '' }}">
|
||||
<i class=></i>
|
||||
<label>{!! Lang::get('lang.icon_class') !!}: <span class="text-red"> *</span></label><br>
|
||||
<select class="form-control icons" name="icon_class" style="font-family: FontAwesome, sans-serif;" required>
|
||||
<option <?php if ($status->icon_class == "fa fa fa-edit") echo 'selected="selected"' ?> value="fa fa-edit"></option>
|
||||
<option <?php if ($status->icon_class == "fa fa-folder-open") echo 'selected="selected"' ?> value="fa fa-folder-open"></option>
|
||||
<option <?php if ($status->icon_class == "fa fa-minus-circle") echo 'selected="selected"' ?> value="fa fa-minus-circle"></option>
|
||||
<option <?php if ($status->icon_class == "glyphicon glyphicon-alert") echo 'selected="selected"' ?> value="glyphicon glyphicon-alert"></option>
|
||||
<option <?php if ($status->icon_class == "fa fa fa-bars") echo 'selected="selected"' ?> value="fa fa-bars"></option>
|
||||
<option <?php if ($status->icon_class == "fa fa-bell-o") echo 'selected="selected"' ?> value="fa fa-bell-o"></option>
|
||||
<option <?php if ($status->icon_class == "fa fa-bookmark-o") echo 'selected="selected"' ?> value="fa fa-bookmark-o"></option>
|
||||
<option <?php if ($status->icon_class == "fa fa-bug") echo 'selected="selected"' ?> value="fa fa-bug"></option>
|
||||
<option <?php if ($status->icon_class == "fa fa-bullhorn") echo 'selected="selected"' ?> value="fa fa-bullhorn"></option>
|
||||
<option <?php if ($status->icon_class == "fa fa-calendar") echo 'selected="selected"' ?> value="fa fa-calendar"></option>
|
||||
<option <?php if ($status->icon_class == "fa fa-cart-plus") echo 'selected="selected"' ?> value="fa fa-cart-plus"></option>
|
||||
<option <?php if ($status->icon_class == "fa fa-check") echo 'selected="selected"' ?> value="fa fa-check"></option>
|
||||
<option <?php if ($status->icon_class == "fa fa-check-circle") echo 'selected="selected"' ?> value="fa fa-check-circle"></option>
|
||||
<option <?php if ($status->icon_class == "fa fa-check-circle-o") echo 'selected="selected"' ?> value="fa fa-check-circle-o"></option>
|
||||
<option <?php if ($status->icon_class == "fa fa-check-square") echo 'selected="selected"' ?> value="fa fa-check-square"></option>
|
||||
<option <?php if ($status->icon_class == "fa fa-check-square-o") echo 'selected="selected"' ?> value="fa fa-check-square-o"></option>
|
||||
<option <?php if ($status->icon_class == "fa fa-circle-o-notch") echo 'selected="selected"' ?> value="fa fa-circle-o-notch"></option>
|
||||
<option <?php if ($status->icon_class == "fa fa-clock-o") echo 'selected="selected"' ?> value="fa fa-clock-o"></option>
|
||||
<option <?php if ($status->icon_class == "fa fa-close") echo 'selected="selected"' ?> value="fa fa-close"></option>
|
||||
<option <?php if ($status->icon_class == "fa fa-code") echo 'selected="selected"' ?> value="fa fa-code"></option>
|
||||
<option <?php if ($status->icon_class == "fa fa-hand-paper-o") echo 'selected="selected"' ?> value="fa fa-hand-paper-o"></option>
|
||||
<option <?php if ($status->icon_class == "fa fa-hourglass-half") echo 'selected="selected"' ?> value="fa fa-hourglass-half"></option>
|
||||
<option <?php if ($status->icon_class == "fa fa-cog") echo 'selected="selected"' ?> value="fa fa-cog"></option>
|
||||
<option <?php if ($status->icon_class == "fa fa-cogs") echo 'selected="selected"' ?> value="fa fa-cogs"></option>
|
||||
<option <?php if ($status->icon_class == "fa fa-comment") echo 'selected="selected"' ?> value="fa fa-comment"></option>
|
||||
<option <?php if ($status->icon_class == "fa fa-comment-o") echo 'selected="selected"' ?> value="fa fa-comment-o"></option>
|
||||
<option <?php if ($status->icon_class == "fa fa-commenting") echo 'selected="selected"' ?> value="fa fa-commenting"></option>
|
||||
<option <?php if ($status->icon_class == "fa fa-commenting-o") echo 'selected="selected"' ?> value="fa fa-commenting-o"></option>
|
||||
<option <?php if ($status->icon_class == "fa fa-comments") echo 'selected="selected"' ?> value="fa fa-comments"></option>
|
||||
<option <?php if ($status->icon_class == "fa fa-comments-o") echo 'selected="selected"' ?> value="fa fa-comments-o"></option>
|
||||
<option <?php if ($status->icon_class == "fa fa-edit") echo 'selected="selected"' ?> value="fa fa-edit"></option>
|
||||
<option <?php if ($status->icon_class == "fa fa-envelope-o") echo 'selected="selected"' ?> value="fa fa-envelope-o"></option>
|
||||
<option <?php if ($status->icon_class == "fa fa-exchange") echo 'selected="selected"' ?> value="fa fa-exchange"></option>
|
||||
<option <?php if ($status->icon_class == "fa fa-exclamation") echo 'selected="selected"' ?> value="fa fa-exclamation"></option>
|
||||
<option <?php if ($status->icon_class == "fa fa-exclamation-triangle") echo 'selected="selected"' ?> value="fa fa-exclamation-triangle"></option>
|
||||
<option <?php if ($status->icon_class == "fa fa-external-link") echo 'selected="selected"' ?> value="fa fa-external-link"></option>
|
||||
<option <?php if ($status->icon_class == "fa fa-eye") echo 'selected="selected"' ?> value="fa fa-eye"></option>
|
||||
<option <?php if ($status->icon_class == "fa fa-feed") echo 'selected="selected"' ?> value="fa fa-feed"></option>
|
||||
<option <?php if ($status->icon_class == "fa fa-flag-o") echo 'selected="selected"' ?> value="fa fa-flag-o"></option>
|
||||
<option <?php if ($status->icon_class == "fa fa-flash") echo 'selected="selected"' ?> value="fa fa-flash"></option>
|
||||
<option <?php if ($status->icon_class == "fa fa-folder-o") echo 'selected="selected"' ?> value="fa fa-folder-o"></option>
|
||||
<option <?php if ($status->icon_class == "fa fa-folder-open-o") echo 'selected="selected"' ?> value="fa fa-folder-open-o"></option>
|
||||
<option <?php if ($status->icon_class == "fa fa-group") echo 'selected="selected"' ?> value="fa fa-group"></option>
|
||||
<option <?php if ($status->icon_class == "fa fa-info") echo 'selected="selected"' ?> value="fa fa-info"></option>
|
||||
<option <?php if ($status->icon_class == "fa fa-life-ring") echo 'selected="selected"' ?> value="fa fa-life-ring"></option>
|
||||
<option <?php if ($status->icon_class == "fa fa-line-chart") echo 'selected="selected"' ?> value="fa fa-line-chart"></option>
|
||||
<option <?php if ($status->icon_class == "fa fa-location-arrow") echo 'selected="selected"' ?> value="fa fa-location-arrow"></option>
|
||||
<option <?php if ($status->icon_class == "fa fa-lock") echo 'selected="selected"' ?> value="fa fa-lock"></option>
|
||||
<option <?php if ($status->icon_class == "fa fa-mail-forward") echo 'selected="selected"' ?> value="fa fa-mail-forward"></option>
|
||||
<option <?php if ($status->icon_class == "fa fa-mail-reply") echo 'selected="selected"' ?> value="fa fa-mail-reply"></option>
|
||||
<option <?php if ($status->icon_class == "fa fa-mail-reply-all") echo 'selected="selected"' ?> value="fa fa-mail-reply-all"></option>
|
||||
<option <?php if ($status->icon_class == "fa fa-times") echo 'selected="selected"' ?> value="fa fa-times"></option>
|
||||
<option <?php if ($status->icon_class == "fa fa-trash-o") echo 'selected="selected"' ?> value="fa fa-trash-o"></option>
|
||||
<option <?php if ($status->icon_class == "fa fa-user") echo 'selected="selected"' ?> value="fa fa-user"></option>
|
||||
<option <?php if ($status->icon_class == "fa fa-user-plus") echo 'selected="selected"' ?> value="fa fa-user-plus"></option>
|
||||
<option <?php if ($status->icon_class == "fa fa-user-secret") echo 'selected="selected"' ?> value="fa fa-user-secret"></option>
|
||||
<option <?php if ($status->icon_class == "fa fa-user-times") echo 'selected="selected"' ?> value="fa fa-user-times"></option>
|
||||
<option <?php if ($status->icon_class == "fa fa-users") echo 'selected="selected"' ?> value="fa fa-users"></option>
|
||||
<option <?php if ($status->icon_class == "fa fa-wrench") echo 'selected="selected"' ?> value="fa fa-wrench"></option>
|
||||
<option <?php if ($status->icon_class == "fa fa-circle-o-notch") echo 'selected="selected"' ?> value="fa fa-circle-o-notch"></option>
|
||||
<option <?php if ($status->icon_class == "fa fa-refresh") echo 'selected="selected"' ?> value="fa fa-refresh"></option>
|
||||
<option <?php if ($status->icon_class == "fa fa-spinner") echo 'selected="selected"' ?> value="fa fa-spinner"></option>
|
||||
<select class="form-control icons" name="icon_class" style="font-family: 'FontAwesome', sans-serif;" required>
|
||||
<option <?php if ($status->icon_class == "fas fa-edit") echo 'selected="selected"' ?> value="fas fa-edit"></option>
|
||||
<option <?php if ($status->icon_class == "fas fa-folder-open") echo 'selected="selected"' ?> value="fas fa-folder-open"></option>
|
||||
<option <?php if ($status->icon_class == "fas fa-minus-circle") echo 'selected="selected"' ?> value="fas fa-minus-circle"></option>
|
||||
<option <?php if ($status->icon_class == "fas fa-exclamation-triangle") echo 'selected="selected"' ?> value="fas fa-exclamation-triangle"></option>
|
||||
<option <?php if ($status->icon_class == "fas fa-bars") echo 'selected="selected"' ?> value="fas fa-bars"></option>
|
||||
<option <?php if ($status->icon_class == "fas fa-bell") echo 'selected="selected"' ?> value="fas fa-bell"></option>
|
||||
<option <?php if ($status->icon_class == "fas fa-bookmark") echo 'selected="selected"' ?> value="fas fa-bookmark"></option>
|
||||
<option <?php if ($status->icon_class == "fas fa-bug") echo 'selected="selected"' ?> value="fas fa-bug"></option>
|
||||
<option <?php if ($status->icon_class == "fas fa-bullhorn") echo 'selected="selected"' ?> value="fas fa-bullhorn"></option>
|
||||
<option <?php if ($status->icon_class == "fas fa-calendar") echo 'selected="selected"' ?> value="fas fa-calendar"></option>
|
||||
<option <?php if ($status->icon_class == "fas fa-cart-plus") echo 'selected="selected"' ?> value="fas fa-cart-plus"></option>
|
||||
<option <?php if ($status->icon_class == "fas fa-check") echo 'selected="selected"' ?> value="fas fa-check"></option>
|
||||
<option <?php if ($status->icon_class == "far fa-check-circle") echo 'selected="selected"' ?> value="far fa-check-circle"></option>
|
||||
<option <?php if ($status->icon_class == "fas fa-check-circle") echo 'selected="selected"' ?> value="fas fa-check-circle"></option>
|
||||
<option <?php if ($status->icon_class == "far fa-check-square") echo 'selected="selected"' ?> value="far fa-check-square"></option>
|
||||
<option <?php if ($status->icon_class == "fas fa-check-square") echo 'selected="selected"' ?> value="fas fa-check-square"></option>
|
||||
<option <?php if ($status->icon_class == "fas fa-circle-notch") echo 'selected="selected"' ?> value="fas fa-circle-notch"></option>
|
||||
<option <?php if ($status->icon_class == "fas fa-clock") echo 'selected="selected"' ?> value="fas fa-clock"></option>
|
||||
<option <?php if ($status->icon_class == "fas fa-times") echo 'selected="selected"' ?> value="fas fa-times"></option>
|
||||
<option <?php if ($status->icon_class == "fas fa-code") echo 'selected="selected"' ?> value="fas fa-code"></option>
|
||||
<option <?php if ($status->icon_class == "far fa-hand-paper") echo 'selected="selected"' ?> value="far fa-hand-paper"></option>
|
||||
<option <?php if ($status->icon_class == "fas fa-hourglass-half") echo 'selected="selected"' ?> value="fas fa-hourglass-half"></option>
|
||||
<option <?php if ($status->icon_class == "fas fa-cog") echo 'selected="selected"' ?> value="fas fa-cog"></option>
|
||||
<option <?php if ($status->icon_class == "fas fa-cogs") echo 'selected="selected"' ?> value="fas fa-cogs"></option>
|
||||
<option <?php if ($status->icon_class == "far fa-comment") echo 'selected="selected"' ?> value="far fa-comment"></option>
|
||||
<option <?php if ($status->icon_class == "fas fa-comment") echo 'selected="selected"' ?> value="fas fa-comment"></option>
|
||||
<option <?php if ($status->icon_class == "far fa-comment-dots") echo 'selected="selected"' ?> value="far fa-comment-dots"></option>
|
||||
<option <?php if ($status->icon_class == "fas fa-comment-dots") echo 'selected="selected"' ?> value="fas fa-comment-dots"></option>
|
||||
<option <?php if ($status->icon_class == "far fa-comments") echo 'selected="selected"' ?> value="far fa-comments"></option>
|
||||
<option <?php if ($status->icon_class == "fas fa-comments") echo 'selected="selected"' ?> value="fas fa-comments"></option>
|
||||
<option <?php if ($status->icon_class == "fas fa-edit") echo 'selected="selected"' ?> value="fas fa-edit"></option>
|
||||
<option <?php if ($status->icon_class == "far fa-envelope") echo 'selected="selected"' ?> value="far fa-envelope"></option>
|
||||
<option <?php if ($status->icon_class == "fas fa-exchange-alt") echo 'selected="selected"' ?> value="fas fa-exchange-alt"></option>
|
||||
<option <?php if ($status->icon_class == "fas fa-exclamation") echo 'selected="selected"' ?> value="fas fa-exclamation"></option>
|
||||
<option <?php if ($status->icon_class == "fas fa-exclamation-triangle") echo 'selected="selected"' ?> value="fas fa-exclamation-triangle"></option>
|
||||
<option <?php if ($status->icon_class == "fas fa-external-link-alt") echo 'selected="selected"' ?> value="fas fa-external-link-alt"></option>
|
||||
<option <?php if ($status->icon_class == "fas fa-eye") echo 'selected="selected"' ?> value="fas fa-eye"></option>
|
||||
<option <?php if ($status->icon_class == "fas fa-rss") echo 'selected="selected"' ?> value="fas fa-rss"></option>
|
||||
<option <?php if ($status->icon_class == "far fa-flag") echo 'selected="selected"' ?> value="far fa-flag"></option>
|
||||
<option <?php if ($status->icon_class == "fas fa-bolt") echo 'selected="selected"' ?> value="fas fa-bolt"></option>
|
||||
<option <?php if ($status->icon_class == "far fa-folder") echo 'selected="selected"' ?> value="far fa-folder"></option>
|
||||
<option <?php if ($status->icon_class == "far fa-folder-open") echo 'selected="selected"' ?> value="far fa-folder-open"></option>
|
||||
<option <?php if ($status->icon_class == "fas fa-users") echo 'selected="selected"' ?> value="fas fa-users"></option>
|
||||
<option <?php if ($status->icon_class == "fas fa-info") echo 'selected="selected"' ?> value="fas fa-info"></option>
|
||||
<option <?php if ($status->icon_class == "fas fa-life-ring") echo 'selected="selected"' ?> value="fas fa-life-ring"></option>
|
||||
<option <?php if ($status->icon_class == "fas fa-chart-line") echo 'selected="selected"' ?> value="fas fa-chart-line"></option>
|
||||
<option <?php if ($status->icon_class == "fas fa-location-arrow") echo 'selected="selected"' ?> value="fas fa-location-arrow"></option>
|
||||
<option <?php if ($status->icon_class == "fas fa-lock") echo 'selected="selected"' ?> value="fas fa-lock"></option>
|
||||
<option <?php if ($status->icon_class == "fas fa-share") echo 'selected="selected"' ?> value="fas fa-share"></option>
|
||||
<option <?php if ($status->icon_class == "fas fa-reply") echo 'selected="selected"' ?> value="fas fa-reply"></option>
|
||||
<option <?php if ($status->icon_class == "fas fa-reply-all") echo 'selected="selected"' ?> value="fas fa-reply-all"></option>
|
||||
<option <?php if ($status->icon_class == "fas fa-times") echo 'selected="selected"' ?> value="fas fa-times"></option>
|
||||
<option <?php if ($status->icon_class == "fas fa-trash") echo 'selected="selected"' ?> value="fas fa-trash"></option>
|
||||
<option <?php if ($status->icon_class == "fas fa-user") echo 'selected="selected"' ?> value="fas fa-user"></option>
|
||||
<option <?php if ($status->icon_class == "fas fa-user-plus") echo 'selected="selected"' ?> value="fas fa-user-plus"></option>
|
||||
<option <?php if ($status->icon_class == "fas fa-user-secret") echo 'selected="selected"' ?> value="fas fa-user-secret"></option>
|
||||
<option <?php if ($status->icon_class == "fas fa-user-times") echo 'selected="selected"' ?> value="fas fa-user-times"></option>
|
||||
<option <?php if ($status->icon_class == "fas fa-users") echo 'selected="selected"' ?> value="fas fa-users"></option>
|
||||
<option <?php if ($status->icon_class == "fas fa-wrench") echo 'selected="selected"' ?> value="fas fa-wrench"></option>
|
||||
<option <?php if ($status->icon_class == "fas fa-circle-notch") echo 'selected="selected"' ?> value="fas fa-circle-notch"></option>
|
||||
<option <?php if ($status->icon_class == "fas fa-sync") echo 'selected="selected"' ?> value="fas fa-sync"></option>
|
||||
<option <?php if ($status->icon_class == "fas fa-spinner") echo 'selected="selected"' ?> value="fas fa-spinner"></option>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
@@ -139,10 +159,10 @@ class="active"
|
||||
{!! Form::label('gender',Lang::get('lang.resolved_status')) !!}
|
||||
<div class="callout callout-default" style="font-style: oblique;">{!! Lang::get('lang.status_msg3') !!}</div>
|
||||
<div class="row">
|
||||
<div class="col-xs-3">
|
||||
<div class="col-sm-3">
|
||||
{!! Form::radio('state','closed',true) !!} {{Lang::get('lang.yes')}}
|
||||
</div>
|
||||
<div class="col-xs-3">
|
||||
<div class="col-sm-3">
|
||||
{!! Form::radio('state','open') !!} {{Lang::get('lang.no')}}
|
||||
</div>
|
||||
</div>
|
||||
@@ -152,10 +172,10 @@ class="active"
|
||||
{!! Form::label('gender',Lang::get('lang.deleted_status')) !!}
|
||||
<div class="callout callout-default" style="font-style: oblique;">{!! Lang::get('lang.status_msg2') !!}</div>
|
||||
<div class="row">
|
||||
<div class="col-xs-3">
|
||||
<div class="col-sm-3">
|
||||
{!! Form::radio('delete','yes') !!} {{Lang::get('lang.yes')}}
|
||||
</div>
|
||||
<div class="col-xs-3">
|
||||
<div class="col-sm-3">
|
||||
{!! Form::radio('delete','no') !!} {{Lang::get('lang.no')}}
|
||||
</div>
|
||||
</div>
|
||||
@@ -165,18 +185,32 @@ class="active"
|
||||
{!! Form::label('gender',Lang::get('lang.notify_user')) !!}
|
||||
<div class="callout callout-default" style="font-style: oblique;">{!! Lang::get('lang.status_msg1') !!}</div>
|
||||
<div class="row">
|
||||
<div class="col-xs-3">
|
||||
<div class="col-sm-3">
|
||||
{!! Form::radio('email_user','yes') !!} {{Lang::get('lang.yes')}}
|
||||
</div>
|
||||
<div class="col-xs-3">
|
||||
<div class="col-sm-3">
|
||||
{!! Form::radio('email_user','no') !!} {{Lang::get('lang.no')}}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="box-footer">
|
||||
<div class="card-footer">
|
||||
{!! Form::submit(Lang::get('lang.update'),['class'=>'btn btn-primary'])!!}
|
||||
</div>
|
||||
{!! Form::close() !!}
|
||||
</div>
|
||||
<script src="{{asset("lb-faveo/plugins/select2/select2.full.min.js")}}" type="text/javascript"></script>
|
||||
<script type="text/javascript">
|
||||
function format(option){
|
||||
var icon = $(option.element).attr('value');
|
||||
return '<i class="'+icon+'" ></i> ';
|
||||
}
|
||||
$('.icons').select2({
|
||||
templateResult: format,
|
||||
templateSelection: format,
|
||||
escapeMarkup: function (m) {
|
||||
return m;
|
||||
}
|
||||
})
|
||||
</script>
|
||||
@stop
|
||||
Reference in New Issue
Block a user