{!! Form::open(['url' => action([\App\Http\Controllers\AppVersionController::class, 'store']), 'method' => 'post', 'id' => 'app_version_add_form', 'files' => true ]) !!}

@lang('app_version.add_app_version_for') {{ ucfirst($type) }}

{!! Form::hidden('app_type', $type) !!}
{!! Form::label('version_name', __( 'app_version.name' ) . ':*') !!} {!! Form::text('version_name', null, ['class' => 'form-control', 'required', 'placeholder' => __( 'app_version.name' )]); !!}
{!! Form::label('version_file', 'Upload APK File:') !!} {!! Form::file('version_file', ['class' => 'form-control', 'accept' => '.apk']) !!}

Note: Upload apk file .apk

{!! Form::close() !!}