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

Edit Wallet

{{ Form::model($wallet,['route' => ['wallet.update' , $wallet->id ],'method' => 'PUT'] ) }}
{!! Form::label('Wallet Balence') !!} {!! Form::text('wallet_balence', null, array('required', 'class'=>'form-control', 'placeholder'=>'Wallet Balence')) !!}
{!! Form::label('Wallet Per Order') !!} {!! Form::text('wallet_per_order', null, array('required', 'class'=>'form-control', 'placeholder'=>'Wallet Per Order')) !!}
{!! Html::linkRoute('wallet.show','Cancel',array($wallet->id),array('class' => 'btn btn-primary' )) !!} {!! Form::submit('Save Changes', array('class'=>'btn btn-primary')) !!}
{!! Form::close() !!}
@endsection