@extends('layouts.merchant-backend-layout') @section('content')

Settings



@include('includes.messages')
@if($merchant->outlet_mode =='Auto') @else @endif
Auto Accept Membership Program Request Action
ON OFF Edit


Feedback Receipt Text To Display

{{Form::open(array('url'=>'merchant/referralText','method'=>'POST','role'=>"form", 'files'=>true,'id'=>'adds-add-form'))}}
{{ Form::textarea('feedback_text',$merchant->feedback_disply_text, ['size' => '80x3']) }}
{{Form::submit('Update',array('class'=>'btn btn-primary','id'=>'submitbtn','style'=>'width: 150px;'))}}
{{Form::close()}}


Text To Display on Card Details

{{Form::open(array('url'=>'merchant/carddisplay_text','method'=>'POST','role'=>"form", 'files'=>true,'id'=>'adds-add-form'))}}
{{ Form::textarea('cards_display_text',$merchant->credit_details_text, ['size' => '80x3']) }}
{{Form::submit('Update',array('class'=>'btn btn-primary','id'=>'submitbtn','style'=>'width: 150px;'))}}
{{Form::close()}}


{{Form::open(array('url'=>'merchant/updateSetting','method'=>'POST','role'=>"form", 'files'=>true,'id'=>'adds-add-form'))}}

Add Credits

{{ Form::label('title', '1.Generate Bill Number Automatically',['style' => 'font-weight: 00;']) }}

    @if($merchant->auto_bill=='Yes') {{ Form::radio('autobill', 'Yes',True) }} @else {{ Form::radio('autobill', 'Yes') }} @endif {{ Form::label('YES') }}        @if($merchant->auto_bill=='No') {{ Form::radio('autobill' , 'No',true) }} @else {{ Form::radio('autobill' , 'No') }} @endif {{ Form::label('NO') }}

{{ Form::label('title', '2.Allow edit to % for awarding credits on Merchant App',['class' => 'box-title']) }}

    @if($merchant->edit_award=='Yes') {{ Form::radio('edit_award', 'Yes',True) }} @else {{ Form::radio('edit_award', 'Yes') }} @endif {{ Form::label('YES') }}        @if($merchant->edit_award=='No') {{ Form::radio('edit_award' , 'No',true) }} @else {{ Form::radio('edit_award' , 'No') }} @endif {{ Form::label('NO') }}

{{ Form::label('title', '3.Maximum % allowed to be awarded in one transaction',['class' => 'box-title']) }}
    {{Form::text('maxallow_award',$merchant->maxallow_award_trans,array('class' => 'required numericOnly form-control','id'=>'maxallow_award' ,'style'=>'width: 48px; margin-left: 47px;'))}}

Redeem Credits

{{ Form::label('title', '1.Minimum Balance required to redeem',['class' => 'box-title']) }}
    {{Form::text('mimrequired_bal',$merchant->mim_balance_redeem,array('class' => 'required numericOnly form-control','id'=>'mimrequired_bal' ,'style'=>'width: 127px; margin-left: 47px;'))}}

{{ Form::label('title', '2.Maximum % of Bill amount allowed to be Redeemed ',['class' => 'box-title']) }}
    {{Form::text('max_redeem_gbill',$merchant->max_redeem_gbill,array('class' => 'required numericOnly form-control','id'=>'max_redeem_gbill' ,'style'=>'width: 48px; margin-left: 47px;'))}}

@section('scripts') @stop {{ Form::label('title', '3.Limit credits that can be redeemed in a single transaction',['class' => 'box-title']) }}
    @if($merchant->limit_max_redeem =='Yes') @else @endif {{ Form::label('YES') }}        @if($merchant->limit_max_redeem=='No') @else @endif {{ Form::label('NO') }}
@if($merchant->limit_max_redeem =='Yes')
    {{Form::text('maxallow_redeem_trans',$merchant->maxallow_redeem_trans,array('class' => 'required numericOnly form-control','id'=>'maxallow_redeem_trans' ,'style'=>'width: 127px; margin-left: 47px;'))}}
@else @endif

{{Form::submit('Submit',array('class'=>'btn btn-primary','id'=>'submitbtn','style'=>'width: 317px;'))}}
{{Form::close()}}
@stop @stop