@extends('layouts.app') @push('css_lib') {{--dropzone--}} @endpush @section('title',trans('Payment Setup')) @section('content') @include('flash::message') @include('adminlte-templates::common.errors')
{!! Form::open(['route' => ['payment.update',$editsetup[0]->id], 'method' => 'patch']) !!}
{!! Form::label('cutoff_amount','Payment Cut-off Amount', ['class' => 'col-5 control-label text-right']) !!}
{!! Form::number('cutoff_amount',$editsetup[0]->cutoff_amount, ['class' => 'form-control','placeholder'=>'Payment Cut-off Amount','required' => 'required']) !!}
Payment Cut-off Amount
{!! Form::label('Type','Type', ['class' => 'col-5 control-label text-right']) !!}
Type
{!! Form::label('Amount Type','Amount Type', ['class' => 'col-5 control-label text-right']) !!}
Amount Type
{!! Form::label('amount','Amount', ['class' => 'col-5 control-label text-right']) !!}
{!! Form::number('amount',$editsetup[0]->amount, ['class' => 'form-control','placeholder'=>'Amount','required' => 'required']) !!}
Amount
{!! Form::label('status', trans("lang.status"), ['class' => 'col-5 control-label text-right']) !!}
{{ trans("lang.status") }}
{{trans('lang.cancel')}}
{!! Form::close() !!}
@include('layouts.media_modal',['collection'=>null]) @endsection @push('scripts_lib') {{--dropzone--}} @endpush