@extends('admin/master/index') @section('content')
{!! Form::open() !!}
{!! Form::label('currency') !!} PayPal supported currency Visit Here | Stripe supports almost all
{!! Form::label('amount','Amount') !!} ( In lowest value like cents/paisa/bani/ore/kurus ) Make sure it must be greater than 50 cents {!! Form::input('number','amount',(int)siteSettings('amount'),['class' => 'form-control']) !!}
{!! Form::label('isFree','Job Creation is Free') !!} {!! Form::checkbox('isFree', 1, (int)siteSettings('isFree')) !!}
{!! Form::label('numberOfDays','Number of days post will be live/displayed on site') !!}
{!! Form::submit('Update',['class'=>'btn btn-success']) !!}
{!! Form::close() !!}
@endsection