@extends('user') @section('content')

@include('partials.breadcrumb')

{!! Form::open(['method'=>'post','role'=>'form','name' =>'editForm', 'files'=>true]) !!} @foreach($wallets->chunk(2) as $items)
@foreach($items as $wallet)

{{$wallet->mining->coin_code}} Wallet

@endforeach
@endforeach

@if(count($wallets) >0)
@else

You have no wallet yet !

@endif {!! Form::close() !!}
@endsection @section('script') @endsection