{!! Form::open(['route' => 'mobile_recharge_journeys.verifyPage', 'method' => 'post', 'files' => true]) !!}
{{-- @php
use App\Models\User;
use App\Models\Wallet;
$users = User::get()->pluck('name','id');
$wallets = Wallet::get()->pluck('name','id');
@endphp --}}
{!! Form::close() !!}
{!! Form::label('phone', __('Phone Number')) !!}
{!! Form::text('phone', $phone??null, ['class' => 'form-control','placeholder' => 'Phone Number','readonly']) !!}
{!! 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") }}