@extends('admin.template.master') @section('title')

Payment Gatewaywise Rate Update

@endsection @section('main-content')

Update

{!! Form::open(['method' => 'POST', 'url' => '/admin/payment-gateway-wise-rates/edit/' . $info->id ]) !!}
{!! Form::label('Rate') !!} {!! Form::text('rate', $info->rate, ['class' => 'form-control', 'placeholder' => 'Rate', 'required'=>'required']) !!} @if ($errors->has('rate')) {!! $errors->first('rate') !!} @endif
{!! Form::label('max_limit') !!} {!! Form::text('max_limit', $info->max_limit, ['class' => 'form-control', 'placeholder' => 'Max. Limit' ]) !!} @if ($errors->has('max_limit')) {!! $errors->first('max_limit') !!} @endif
{!! Form::label('Status') !!} {!! Form::select('is_active', ['active' => 'Active', 'inactive' => 'Inactive'], isset($info->is_active) ? $info->is_active : null, ['required'=>'required', 'class' => 'form-control']) !!} @if ($errors->has('is_active')) {!! $errors->first('is_active') !!} @endif
{!! Form::close() !!}
@endsection