@extends('layouts.admin') @section('title'){{ __('Update') }} {{__('Wallet')}} @endsection @section('content') @include('includes.page_header',['title'=>__('Update')." ".__('Wallet'),'url'=>route('admin.wallets.index'),'icon' => $icon??'','permission'=>'Wallet-view'])
{!! Form::model($wallet, ['route' => ['admin.wallets.update', $wallet->id], 'method' => 'patch', 'files' => true]) !!} @include('admin.wallets.fields') {!! Form::close() !!}
@endsection