@extends('admin.app') @section('page_title','Add New Wallet') @section('page_location') @endsection @section('main-content')

Add New Wallets

{!! Form::open(array('route' => 'wallet.store', 'class' => 'form' ,'id' =>'createroomsform','files' => true)) !!}
{!! Form::label('Wallet Balance') !!} {!! Form::text('wallet balance', null, array('required', 'class'=>'form-control', 'placeholder'=>'Wallet Balance')) !!}
{!! Form::label('Wallet Per Order') !!} {!! Form::text('wallet_per_order', null, array('required', 'class'=>'form-control', 'placeholder'=>'Wallet Per Order')) !!}
{!! Form::submit('Add New!!', array('class'=>'btn btn-primary')) !!}
{!! Form::close() !!}
@endsection