@extends('admin.app') @section('page_title','Edit Wallet') @section('page_location') @endsection @section('main-content')
echo "hhh";die;

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')) !!}
{!! Form::close() !!}
@endsection