@extends(Auth::user()->extender()) @section('title'){{__('Verify')}} {{ __('Mobile Recharge') }} @endsection @section('content') @include('includes.page_header',['title'=>__('Verify')." ". __('Mobile Recharge'),'url'=>route(Auth::user()->user_dashboard()),'icon' => $icon??'','permission'=>'PriorityRoute-view'])
@include('widgets.wallet_widgets')
{!! Form::open(['route' => 'mobile_recharge_journeys.verifyPage', 'method' => 'post', 'files' => true]) !!}
{!! Form::label('phone', __('Phone Number')) !!} {!! Form::text('phone', $phone??null, ['class' => 'form-control','placeholder' => 'Phone Number','readonly']) !!}
{{-- @php use App\Models\User; use App\Models\Wallet; $users = User::get()->pluck('name','id'); $wallets = Wallet::get()->pluck('name','id'); @endphp --}}
{!! Form::label('user_id', __('User')) !!} {!! Form::select('user_id', $users, null, ['class' => 'form-control','placeholder' => 'Select User','required']) !!}
{!! Form::label('wallet_id', __('Wallet')) !!} {!! Form::select('wallet_id', $wallets, null, ['class' => 'form-control','placeholder' => 'Select Wallet','required']) !!}
Operator

{{$available_operator['name']}}

Country

{{$available_operator['country']['name']}}

Country Code

{{$available_operator['country']['iso_code']}}


{{ Form::button(' '.__('Show Products'), ['type' => 'submit', 'class' => 'btn btn-primary '] ) }} {{ __("Cancel") }}
{!! Form::close() !!}
@endsection